1 /* SPDX-License-Identifier: GPL-2.0-or-later */
3 * Copyright (c) International Business Machines Corp., 2006
5 * Author: Artem Bityutskiy (Битюцкий Артём)
8 #ifndef __UBI_DEBUG_H__
9 #define __UBI_DEBUG_H__
11 void ubi_dump_flash(struct ubi_device
*ubi
, int pnum
, int offset
, int len
);
12 void ubi_dump_ec_hdr(const struct ubi_ec_hdr
*ec_hdr
);
13 void ubi_dump_vid_hdr(const struct ubi_vid_hdr
*vid_hdr
);
15 #include <linux/random.h>
17 #define ubi_assert(expr) do { \
18 if (unlikely(!(expr))) { \
19 pr_crit("UBI assert failed in %s at %u (pid %d)\n", \
20 __func__, __LINE__, current->pid); \
25 #define ubi_dbg_print_hex_dump(l, ps, pt, r, g, b, len, a) \
26 print_hex_dump(l, ps, pt, r, g, b, len, a)
28 #define ubi_dbg_msg(type, fmt, ...) \
29 pr_debug("UBI DBG " type " (pid %d): " fmt "\n", current->pid, \
32 /* General debugging messages */
33 #define dbg_gen(fmt, ...) ubi_dbg_msg("gen", fmt, ##__VA_ARGS__)
34 /* Messages from the eraseblock association sub-system */
35 #define dbg_eba(fmt, ...) ubi_dbg_msg("eba", fmt, ##__VA_ARGS__)
36 /* Messages from the wear-leveling sub-system */
37 #define dbg_wl(fmt, ...) ubi_dbg_msg("wl", fmt, ##__VA_ARGS__)
38 /* Messages from the input/output sub-system */
39 #define dbg_io(fmt, ...) ubi_dbg_msg("io", fmt, ##__VA_ARGS__)
40 /* Initialization and build messages */
41 #define dbg_bld(fmt, ...) ubi_dbg_msg("bld", fmt, ##__VA_ARGS__)
43 void ubi_dump_vol_info(const struct ubi_volume
*vol
);
44 void ubi_dump_vtbl_record(const struct ubi_vtbl_record
*r
, int idx
);
45 void ubi_dump_av(const struct ubi_ainf_volume
*av
);
46 void ubi_dump_aeb(const struct ubi_ainf_peb
*aeb
, int type
);
47 void ubi_dump_mkvol_req(const struct ubi_mkvol_req
*req
);
48 int ubi_self_check_all_ff(struct ubi_device
*ubi
, int pnum
, int offset
,
50 int ubi_debugfs_init(void);
51 void ubi_debugfs_exit(void);
52 int ubi_debugfs_init_dev(struct ubi_device
*ubi
);
53 void ubi_debugfs_exit_dev(struct ubi_device
*ubi
);
56 * The following function is a legacy implementation of UBI fault-injection
57 * hook. When using more powerful fault injection capabilities, the legacy
58 * fault injection interface should be retained.
60 int ubi_dbg_power_cut(struct ubi_device
*ubi
, int caller
);
62 static inline int ubi_dbg_bitflip(const struct ubi_device
*ubi
)
64 if (ubi
->dbg
.emulate_bitflips
)
65 return !get_random_u32_below(200);
69 static inline int ubi_dbg_write_failure(const struct ubi_device
*ubi
)
71 if (ubi
->dbg
.emulate_io_failures
)
72 return !get_random_u32_below(500);
76 static inline int ubi_dbg_erase_failure(const struct ubi_device
*ubi
)
78 if (ubi
->dbg
.emulate_io_failures
)
79 return !get_random_u32_below(400);
84 * MASK_XXX: Mask for emulate_failures in ubi_debug_info.The mask is used to
85 * precisely control the type and process of fault injection.
87 /* Emulate a power cut when writing EC/VID header */
88 #define MASK_POWER_CUT_EC (1 << 0)
89 #define MASK_POWER_CUT_VID (1 << 1)
90 /* Emulate a power cut when writing data*/
91 #define MASK_POWER_CUT_DATA (1 << 2)
92 /* Emulate bit-flips */
93 #define MASK_BITFLIPS (1 << 3)
94 /* Emulate ecc error */
95 #define MASK_ECCERR (1 << 4)
96 /* Emulates -EIO during data read */
97 #define MASK_READ_FAILURE (1 << 5)
98 #define MASK_READ_FAILURE_EC (1 << 6)
99 #define MASK_READ_FAILURE_VID (1 << 7)
100 /* Emulates -EIO during data write */
101 #define MASK_WRITE_FAILURE (1 << 8)
102 /* Emulates -EIO during erase a PEB*/
103 #define MASK_ERASE_FAILURE (1 << 9)
104 /* Return UBI_IO_FF when reading EC/VID header */
105 #define MASK_IO_FF_EC (1 << 10)
106 #define MASK_IO_FF_VID (1 << 11)
107 /* Return UBI_IO_FF_BITFLIPS when reading EC/VID header */
108 #define MASK_IO_FF_BITFLIPS_EC (1 << 12)
109 #define MASK_IO_FF_BITFLIPS_VID (1 << 13)
110 /* Return UBI_IO_BAD_HDR when reading EC/VID header */
111 #define MASK_BAD_HDR_EC (1 << 14)
112 #define MASK_BAD_HDR_VID (1 << 15)
113 /* Return UBI_IO_BAD_HDR_EBADMSG when reading EC/VID header */
114 #define MASK_BAD_HDR_EBADMSG_EC (1 << 16)
115 #define MASK_BAD_HDR_EBADMSG_VID (1 << 17)
117 #ifdef CONFIG_MTD_UBI_FAULT_INJECTION
119 extern bool should_fail_eccerr(void);
120 extern bool should_fail_bitflips(void);
121 extern bool should_fail_read_failure(void);
122 extern bool should_fail_write_failure(void);
123 extern bool should_fail_erase_failure(void);
124 extern bool should_fail_power_cut(void);
125 extern bool should_fail_io_ff(void);
126 extern bool should_fail_io_ff_bitflips(void);
127 extern bool should_fail_bad_hdr(void);
128 extern bool should_fail_bad_hdr_ebadmsg(void);
130 static inline bool ubi_dbg_fail_bitflip(const struct ubi_device
*ubi
)
132 if (ubi
->dbg
.emulate_failures
& MASK_BITFLIPS
)
133 return should_fail_bitflips();
137 static inline bool ubi_dbg_fail_write(const struct ubi_device
*ubi
)
139 if (ubi
->dbg
.emulate_failures
& MASK_WRITE_FAILURE
)
140 return should_fail_write_failure();
144 static inline bool ubi_dbg_fail_erase(const struct ubi_device
*ubi
)
146 if (ubi
->dbg
.emulate_failures
& MASK_ERASE_FAILURE
)
147 return should_fail_erase_failure();
151 static inline bool ubi_dbg_fail_power_cut(const struct ubi_device
*ubi
,
154 if (ubi
->dbg
.emulate_failures
& caller
)
155 return should_fail_power_cut();
159 static inline bool ubi_dbg_fail_read(const struct ubi_device
*ubi
,
162 if (ubi
->dbg
.emulate_failures
& caller
)
163 return should_fail_read_failure();
167 static inline bool ubi_dbg_fail_eccerr(const struct ubi_device
*ubi
)
169 if (ubi
->dbg
.emulate_failures
& MASK_ECCERR
)
170 return should_fail_eccerr();
174 static inline bool ubi_dbg_fail_ff(const struct ubi_device
*ubi
,
177 if (ubi
->dbg
.emulate_failures
& caller
)
178 return should_fail_io_ff();
182 static inline bool ubi_dbg_fail_ff_bitflips(const struct ubi_device
*ubi
,
185 if (ubi
->dbg
.emulate_failures
& caller
)
186 return should_fail_io_ff_bitflips();
190 static inline bool ubi_dbg_fail_bad_hdr(const struct ubi_device
*ubi
,
193 if (ubi
->dbg
.emulate_failures
& caller
)
194 return should_fail_bad_hdr();
198 static inline bool ubi_dbg_fail_bad_hdr_ebadmsg(const struct ubi_device
*ubi
,
201 if (ubi
->dbg
.emulate_failures
& caller
)
202 return should_fail_bad_hdr_ebadmsg();
205 #else /* CONFIG_MTD_UBI_FAULT_INJECTION */
207 #define ubi_dbg_fail_bitflip(u) false
208 #define ubi_dbg_fail_write(u) false
209 #define ubi_dbg_fail_erase(u) false
210 #define ubi_dbg_fail_power_cut(u, c) false
211 #define ubi_dbg_fail_read(u, c) false
212 #define ubi_dbg_fail_eccerr(u) false
213 #define ubi_dbg_fail_ff(u, c) false
214 #define ubi_dbg_fail_ff_bitflips(u, v) false
215 #define ubi_dbg_fail_bad_hdr(u, c) false
216 #define ubi_dbg_fail_bad_hdr_ebadmsg(u, c) false
221 * ubi_dbg_is_power_cut - if it is time to emulate power cut.
222 * @ubi: UBI device description object
224 * Returns true if power cut should be emulated, otherwise returns false.
226 static inline bool ubi_dbg_is_power_cut(struct ubi_device
*ubi
,
229 if (ubi_dbg_power_cut(ubi
, caller
))
231 return ubi_dbg_fail_power_cut(ubi
, caller
);
235 * ubi_dbg_is_bitflip - if it is time to emulate a bit-flip.
236 * @ubi: UBI device description object
238 * Returns true if a bit-flip should be emulated, otherwise returns false.
240 static inline bool ubi_dbg_is_bitflip(const struct ubi_device
*ubi
)
242 if (ubi_dbg_bitflip(ubi
))
244 return ubi_dbg_fail_bitflip(ubi
);
248 * ubi_dbg_is_write_failure - if it is time to emulate a write failure.
249 * @ubi: UBI device description object
251 * Returns true if a write failure should be emulated, otherwise returns
254 static inline bool ubi_dbg_is_write_failure(const struct ubi_device
*ubi
)
256 if (ubi_dbg_write_failure(ubi
))
258 return ubi_dbg_fail_write(ubi
);
262 * ubi_dbg_is_erase_failure - if its time to emulate an erase failure.
263 * @ubi: UBI device description object
265 * Returns true if an erase failure should be emulated, otherwise returns
268 static inline bool ubi_dbg_is_erase_failure(const struct ubi_device
*ubi
)
270 if (ubi_dbg_erase_failure(ubi
))
272 return ubi_dbg_fail_erase(ubi
);
276 * ubi_dbg_is_eccerr - if it is time to emulate ECC error.
277 * @ubi: UBI device description object
279 * Returns true if a ECC error should be emulated, otherwise returns false.
281 static inline bool ubi_dbg_is_eccerr(const struct ubi_device
*ubi
)
283 return ubi_dbg_fail_eccerr(ubi
);
287 * ubi_dbg_is_read_failure - if it is time to emulate a read failure.
288 * @ubi: UBI device description object
290 * Returns true if a read failure should be emulated, otherwise returns
293 static inline bool ubi_dbg_is_read_failure(const struct ubi_device
*ubi
,
296 return ubi_dbg_fail_read(ubi
, caller
);
300 * ubi_dbg_is_ff - if it is time to emulate that read region is only 0xFF.
301 * @ubi: UBI device description object
303 * Returns true if read region should be emulated 0xFF, otherwise
306 static inline bool ubi_dbg_is_ff(const struct ubi_device
*ubi
,
309 return ubi_dbg_fail_ff(ubi
, caller
);
313 * ubi_dbg_is_ff_bitflips - if it is time to emulate that read region is only 0xFF
314 * with error reported by the MTD driver
316 * @ubi: UBI device description object
318 * Returns true if read region should be emulated 0xFF and error
319 * reported by the MTD driver, otherwise returns false.
321 static inline bool ubi_dbg_is_ff_bitflips(const struct ubi_device
*ubi
,
324 return ubi_dbg_fail_ff_bitflips(ubi
, caller
);
328 * ubi_dbg_is_bad_hdr - if it is time to emulate a bad header
329 * @ubi: UBI device description object
331 * Returns true if a bad header error should be emulated, otherwise
334 static inline bool ubi_dbg_is_bad_hdr(const struct ubi_device
*ubi
,
337 return ubi_dbg_fail_bad_hdr(ubi
, caller
);
341 * ubi_dbg_is_bad_hdr_ebadmsg - if it is time to emulate a bad header with
344 * @ubi: UBI device description object
346 * Returns true if a bad header with ECC error should be emulated, otherwise
349 static inline bool ubi_dbg_is_bad_hdr_ebadmsg(const struct ubi_device
*ubi
,
352 return ubi_dbg_fail_bad_hdr_ebadmsg(ubi
, caller
);
356 * ubi_dbg_is_bgt_disabled - if the background thread is disabled.
357 * @ubi: UBI device description object
359 * Returns non-zero if the UBI background thread is disabled for testing
362 static inline int ubi_dbg_is_bgt_disabled(const struct ubi_device
*ubi
)
364 return ubi
->dbg
.disable_bgt
;
367 static inline int ubi_dbg_chk_io(const struct ubi_device
*ubi
)
369 return ubi
->dbg
.chk_io
;
372 static inline int ubi_dbg_chk_gen(const struct ubi_device
*ubi
)
374 return ubi
->dbg
.chk_gen
;
377 static inline int ubi_dbg_chk_fastmap(const struct ubi_device
*ubi
)
379 return ubi
->dbg
.chk_fastmap
;
382 static inline void ubi_enable_dbg_chk_fastmap(struct ubi_device
*ubi
)
384 ubi
->dbg
.chk_fastmap
= 1;
387 #endif /* !__UBI_DEBUG_H__ */