Merge remote-tracking branch 'origin/develop-3.0' into develop-3.0-jb
[firefly-linux-kernel-4.4.55.git] / fs / ubifs / debug.h
1 /*
2  * This file is part of UBIFS.
3  *
4  * Copyright (C) 2006-2008 Nokia Corporation.
5  *
6  * This program is free software; you can redistribute it and/or modify it
7  * under the terms of the GNU General Public License version 2 as published by
8  * the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but WITHOUT
11  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
13  * more details.
14  *
15  * You should have received a copy of the GNU General Public License along with
16  * this program; if not, write to the Free Software Foundation, Inc., 51
17  * Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18  *
19  * Authors: Artem Bityutskiy (Битюцкий Артём)
20  *          Adrian Hunter
21  */
22
23 #ifndef __UBIFS_DEBUG_H__
24 #define __UBIFS_DEBUG_H__
25
26 /* Checking helper functions */
27 typedef int (*dbg_leaf_callback)(struct ubifs_info *c,
28                                  struct ubifs_zbranch *zbr, void *priv);
29 typedef int (*dbg_znode_callback)(struct ubifs_info *c,
30                                   struct ubifs_znode *znode, void *priv);
31
32 #ifdef CONFIG_UBIFS_FS_DEBUG
33
34 #include <linux/random.h>
35
36 /**
37  * ubifs_debug_info - per-FS debugging information.
38  * @old_zroot: old index root - used by 'dbg_check_old_index()'
39  * @old_zroot_level: old index root level - used by 'dbg_check_old_index()'
40  * @old_zroot_sqnum: old index root sqnum - used by 'dbg_check_old_index()'
41  * @failure_mode: failure mode for recovery testing
42  * @fail_delay: 0=>don't delay, 1=>delay a time, 2=>delay a number of calls
43  * @fail_timeout: time in jiffies when delay of failure mode expires
44  * @fail_cnt: current number of calls to failure mode I/O functions
45  * @fail_cnt_max: number of calls by which to delay failure mode
46  * @chk_lpt_sz: used by LPT tree size checker
47  * @chk_lpt_sz2: used by LPT tree size checker
48  * @chk_lpt_wastage: used by LPT tree size checker
49  * @chk_lpt_lebs: used by LPT tree size checker
50  * @new_nhead_offs: used by LPT tree size checker
51  * @new_ihead_lnum: used by debugging to check @c->ihead_lnum
52  * @new_ihead_offs: used by debugging to check @c->ihead_offs
53  *
54  * @saved_lst: saved lprops statistics (used by 'dbg_save_space_info()')
55  * @saved_bi: saved budgeting information
56  * @saved_free: saved amount of free space
57  * @saved_idx_gc_cnt: saved value of @c->idx_gc_cnt
58  *
59  * @dfs_dir_name: name of debugfs directory containing this file-system's files
60  * @dfs_dir: direntry object of the file-system debugfs directory
61  * @dfs_dump_lprops: "dump lprops" debugfs knob
62  * @dfs_dump_budg: "dump budgeting information" debugfs knob
63  * @dfs_dump_tnc: "dump TNC" debugfs knob
64  */
65 struct ubifs_debug_info {
66         struct ubifs_zbranch old_zroot;
67         int old_zroot_level;
68         unsigned long long old_zroot_sqnum;
69         int failure_mode;
70         int fail_delay;
71         unsigned long fail_timeout;
72         unsigned int fail_cnt;
73         unsigned int fail_cnt_max;
74         long long chk_lpt_sz;
75         long long chk_lpt_sz2;
76         long long chk_lpt_wastage;
77         int chk_lpt_lebs;
78         int new_nhead_offs;
79         int new_ihead_lnum;
80         int new_ihead_offs;
81
82         struct ubifs_lp_stats saved_lst;
83         struct ubifs_budg_info saved_bi;
84         long long saved_free;
85         int saved_idx_gc_cnt;
86
87         char dfs_dir_name[100];
88         struct dentry *dfs_dir;
89         struct dentry *dfs_dump_lprops;
90         struct dentry *dfs_dump_budg;
91         struct dentry *dfs_dump_tnc;
92 };
93
94 #define ubifs_assert(expr) do {                                                \
95         if (unlikely(!(expr))) {                                               \
96                 printk(KERN_CRIT "UBIFS assert failed in %s at %u (pid %d)\n", \
97                        __func__, __LINE__, current->pid);                      \
98                 dbg_dump_stack();                                              \
99         }                                                                      \
100 } while (0)
101
102 #define ubifs_assert_cmt_locked(c) do {                                        \
103         if (unlikely(down_write_trylock(&(c)->commit_sem))) {                  \
104                 up_write(&(c)->commit_sem);                                    \
105                 printk(KERN_CRIT "commit lock is not locked!\n");              \
106                 ubifs_assert(0);                                               \
107         }                                                                      \
108 } while (0)
109
110 #define dbg_dump_stack() dump_stack()
111
112 #define dbg_err(fmt, ...) do {                                                 \
113         spin_lock(&dbg_lock);                                                  \
114         ubifs_err(fmt, ##__VA_ARGS__);                                         \
115         spin_unlock(&dbg_lock);                                                \
116 } while (0)
117
118 const char *dbg_key_str0(const struct ubifs_info *c,
119                          const union ubifs_key *key);
120 const char *dbg_key_str1(const struct ubifs_info *c,
121                          const union ubifs_key *key);
122
123 /*
124  * TODO: these macros are now broken because there is no locking around them
125  * and we use a global buffer for the key string. This means that in case of
126  * concurrent execution we will end up with incorrect and messy key strings.
127  */
128 #define DBGKEY(key) dbg_key_str0(c, (key))
129 #define DBGKEY1(key) dbg_key_str1(c, (key))
130
131 #define ubifs_dbg_msg(type, fmt, ...) \
132         pr_debug("UBIFS DBG " type ": " fmt "\n", ##__VA_ARGS__)
133
134 /* Just a debugging messages not related to any specific UBIFS subsystem */
135 #define dbg_msg(fmt, ...)                                                     \
136         printk(KERN_DEBUG "UBIFS DBG (pid %d): %s: " fmt "\n", current->pid,  \
137                __func__, ##__VA_ARGS__)
138
139 /* General messages */
140 #define dbg_gen(fmt, ...)   ubifs_dbg_msg("gen", fmt, ##__VA_ARGS__)
141 /* Additional journal messages */
142 #define dbg_jnl(fmt, ...)   ubifs_dbg_msg("jnl", fmt, ##__VA_ARGS__)
143 /* Additional TNC messages */
144 #define dbg_tnc(fmt, ...)   ubifs_dbg_msg("tnc", fmt, ##__VA_ARGS__)
145 /* Additional lprops messages */
146 #define dbg_lp(fmt, ...)    ubifs_dbg_msg("lp", fmt, ##__VA_ARGS__)
147 /* Additional LEB find messages */
148 #define dbg_find(fmt, ...)  ubifs_dbg_msg("find", fmt, ##__VA_ARGS__)
149 /* Additional mount messages */
150 #define dbg_mnt(fmt, ...)   ubifs_dbg_msg("mnt", fmt, ##__VA_ARGS__)
151 /* Additional I/O messages */
152 #define dbg_io(fmt, ...)    ubifs_dbg_msg("io", fmt, ##__VA_ARGS__)
153 /* Additional commit messages */
154 #define dbg_cmt(fmt, ...)   ubifs_dbg_msg("cmt", fmt, ##__VA_ARGS__)
155 /* Additional budgeting messages */
156 #define dbg_budg(fmt, ...)  ubifs_dbg_msg("budg", fmt, ##__VA_ARGS__)
157 /* Additional log messages */
158 #define dbg_log(fmt, ...)   ubifs_dbg_msg("log", fmt, ##__VA_ARGS__)
159 /* Additional gc messages */
160 #define dbg_gc(fmt, ...)    ubifs_dbg_msg("gc", fmt, ##__VA_ARGS__)
161 /* Additional scan messages */
162 #define dbg_scan(fmt, ...)  ubifs_dbg_msg("scan", fmt, ##__VA_ARGS__)
163 /* Additional recovery messages */
164 #define dbg_rcvry(fmt, ...) ubifs_dbg_msg("rcvry", fmt, ##__VA_ARGS__)
165
166 /*
167  * Debugging check flags.
168  *
169  * UBIFS_CHK_GEN: general checks
170  * UBIFS_CHK_TNC: check TNC
171  * UBIFS_CHK_IDX_SZ: check index size
172  * UBIFS_CHK_ORPH: check orphans
173  * UBIFS_CHK_OLD_IDX: check the old index
174  * UBIFS_CHK_LPROPS: check lprops
175  * UBIFS_CHK_FS: check the file-system
176  */
177 enum {
178         UBIFS_CHK_GEN     = 0x1,
179         UBIFS_CHK_TNC     = 0x2,
180         UBIFS_CHK_IDX_SZ  = 0x4,
181         UBIFS_CHK_ORPH    = 0x8,
182         UBIFS_CHK_OLD_IDX = 0x10,
183         UBIFS_CHK_LPROPS  = 0x20,
184         UBIFS_CHK_FS      = 0x40,
185 };
186
187 /*
188  * Special testing flags.
189  *
190  * UBIFS_TST_RCVRY: failure mode for recovery testing
191  */
192 enum {
193         UBIFS_TST_RCVRY             = 0x4,
194 };
195
196 extern spinlock_t dbg_lock;
197
198 extern unsigned int ubifs_msg_flags;
199 extern unsigned int ubifs_chk_flags;
200 extern unsigned int ubifs_tst_flags;
201
202 int ubifs_debugging_init(struct ubifs_info *c);
203 void ubifs_debugging_exit(struct ubifs_info *c);
204
205 /* Dump functions */
206 const char *dbg_ntype(int type);
207 const char *dbg_cstate(int cmt_state);
208 const char *dbg_jhead(int jhead);
209 const char *dbg_get_key_dump(const struct ubifs_info *c,
210                              const union ubifs_key *key);
211 void dbg_dump_inode(const struct ubifs_info *c, const struct inode *inode);
212 void dbg_dump_node(const struct ubifs_info *c, const void *node);
213 void dbg_dump_lpt_node(const struct ubifs_info *c, void *node, int lnum,
214                        int offs);
215 void dbg_dump_budget_req(const struct ubifs_budget_req *req);
216 void dbg_dump_lstats(const struct ubifs_lp_stats *lst);
217 void dbg_dump_budg(struct ubifs_info *c, const struct ubifs_budg_info *bi);
218 void dbg_dump_lprop(const struct ubifs_info *c, const struct ubifs_lprops *lp);
219 void dbg_dump_lprops(struct ubifs_info *c);
220 void dbg_dump_lpt_info(struct ubifs_info *c);
221 void dbg_dump_leb(const struct ubifs_info *c, int lnum);
222 void dbg_dump_znode(const struct ubifs_info *c,
223                     const struct ubifs_znode *znode);
224 void dbg_dump_heap(struct ubifs_info *c, struct ubifs_lpt_heap *heap, int cat);
225 void dbg_dump_pnode(struct ubifs_info *c, struct ubifs_pnode *pnode,
226                     struct ubifs_nnode *parent, int iip);
227 void dbg_dump_tnc(struct ubifs_info *c);
228 void dbg_dump_index(struct ubifs_info *c);
229 void dbg_dump_lpt_lebs(const struct ubifs_info *c);
230
231 int dbg_walk_index(struct ubifs_info *c, dbg_leaf_callback leaf_cb,
232                    dbg_znode_callback znode_cb, void *priv);
233
234 /* Checking functions */
235 void dbg_save_space_info(struct ubifs_info *c);
236 int dbg_check_space_info(struct ubifs_info *c);
237 int dbg_check_lprops(struct ubifs_info *c);
238 int dbg_old_index_check_init(struct ubifs_info *c, struct ubifs_zbranch *zroot);
239 int dbg_check_old_index(struct ubifs_info *c, struct ubifs_zbranch *zroot);
240 int dbg_check_cats(struct ubifs_info *c);
241 int dbg_check_ltab(struct ubifs_info *c);
242 int dbg_chk_lpt_free_spc(struct ubifs_info *c);
243 int dbg_chk_lpt_sz(struct ubifs_info *c, int action, int len);
244 int dbg_check_synced_i_size(struct inode *inode);
245 int dbg_check_dir_size(struct ubifs_info *c, const struct inode *dir);
246 int dbg_check_tnc(struct ubifs_info *c, int extra);
247 int dbg_check_idx_size(struct ubifs_info *c, long long idx_size);
248 int dbg_check_filesystem(struct ubifs_info *c);
249 void dbg_check_heap(struct ubifs_info *c, struct ubifs_lpt_heap *heap, int cat,
250                     int add_pos);
251 int dbg_check_lpt_nodes(struct ubifs_info *c, struct ubifs_cnode *cnode,
252                         int row, int col);
253 int dbg_check_inode_size(struct ubifs_info *c, const struct inode *inode,
254                          loff_t size);
255 int dbg_check_data_nodes_order(struct ubifs_info *c, struct list_head *head);
256 int dbg_check_nondata_nodes_order(struct ubifs_info *c, struct list_head *head);
257
258 /* Force the use of in-the-gaps method for testing */
259 static inline int dbg_force_in_the_gaps_enabled(void)
260 {
261         return ubifs_chk_flags & UBIFS_CHK_GEN;
262 }
263 int dbg_force_in_the_gaps(void);
264
265 /* Failure mode for recovery testing */
266 #define dbg_failure_mode (ubifs_tst_flags & UBIFS_TST_RCVRY)
267
268 #ifndef UBIFS_DBG_PRESERVE_UBI
269 #define ubi_leb_read   dbg_leb_read
270 #define ubi_leb_write  dbg_leb_write
271 #define ubi_leb_change dbg_leb_change
272 #define ubi_leb_erase  dbg_leb_erase
273 #define ubi_leb_unmap  dbg_leb_unmap
274 #define ubi_is_mapped  dbg_is_mapped
275 #define ubi_leb_map    dbg_leb_map
276 #endif
277
278 int dbg_leb_read(struct ubi_volume_desc *desc, int lnum, char *buf, int offset,
279                  int len, int check);
280 int dbg_leb_write(struct ubi_volume_desc *desc, int lnum, const void *buf,
281                   int offset, int len, int dtype);
282 int dbg_leb_change(struct ubi_volume_desc *desc, int lnum, const void *buf,
283                    int len, int dtype);
284 int dbg_leb_erase(struct ubi_volume_desc *desc, int lnum);
285 int dbg_leb_unmap(struct ubi_volume_desc *desc, int lnum);
286 int dbg_is_mapped(struct ubi_volume_desc *desc, int lnum);
287 int dbg_leb_map(struct ubi_volume_desc *desc, int lnum, int dtype);
288
289 static inline int dbg_read(struct ubi_volume_desc *desc, int lnum, char *buf,
290                            int offset, int len)
291 {
292         return dbg_leb_read(desc, lnum, buf, offset, len, 0);
293 }
294
295 static inline int dbg_write(struct ubi_volume_desc *desc, int lnum,
296                             const void *buf, int offset, int len)
297 {
298         return dbg_leb_write(desc, lnum, buf, offset, len, UBI_UNKNOWN);
299 }
300
301 static inline int dbg_change(struct ubi_volume_desc *desc, int lnum,
302                                     const void *buf, int len)
303 {
304         return dbg_leb_change(desc, lnum, buf, len, UBI_UNKNOWN);
305 }
306
307 /* Debugfs-related stuff */
308 int dbg_debugfs_init(void);
309 void dbg_debugfs_exit(void);
310 int dbg_debugfs_init_fs(struct ubifs_info *c);
311 void dbg_debugfs_exit_fs(struct ubifs_info *c);
312
313 #else /* !CONFIG_UBIFS_FS_DEBUG */
314
315 /* Use "if (0)" to make compiler check arguments even if debugging is off */
316 #define ubifs_assert(expr)  do {                                               \
317         if (0 && (expr))                                                       \
318                 printk(KERN_CRIT "UBIFS assert failed in %s at %u (pid %d)\n", \
319                        __func__, __LINE__, current->pid);                      \
320 } while (0)
321
322 #define dbg_err(fmt, ...)   do {                   \
323         if (0)                                     \
324                 ubifs_err(fmt, ##__VA_ARGS__);     \
325 } while (0)
326
327 #define ubifs_dbg_msg(fmt, ...) do {               \
328         if (0)                                     \
329                 pr_debug(fmt "\n", ##__VA_ARGS__); \
330 } while (0)
331
332 #define dbg_dump_stack()
333 #define ubifs_assert_cmt_locked(c)
334
335 #define dbg_msg(fmt, ...)   ubifs_dbg_msg(fmt, ##__VA_ARGS__)
336 #define dbg_gen(fmt, ...)   ubifs_dbg_msg(fmt, ##__VA_ARGS__)
337 #define dbg_jnl(fmt, ...)   ubifs_dbg_msg(fmt, ##__VA_ARGS__)
338 #define dbg_tnc(fmt, ...)   ubifs_dbg_msg(fmt, ##__VA_ARGS__)
339 #define dbg_lp(fmt, ...)    ubifs_dbg_msg(fmt, ##__VA_ARGS__)
340 #define dbg_find(fmt, ...)  ubifs_dbg_msg(fmt, ##__VA_ARGS__)
341 #define dbg_mnt(fmt, ...)   ubifs_dbg_msg(fmt, ##__VA_ARGS__)
342 #define dbg_io(fmt, ...)    ubifs_dbg_msg(fmt, ##__VA_ARGS__)
343 #define dbg_cmt(fmt, ...)   ubifs_dbg_msg(fmt, ##__VA_ARGS__)
344 #define dbg_budg(fmt, ...)  ubifs_dbg_msg(fmt, ##__VA_ARGS__)
345 #define dbg_log(fmt, ...)   ubifs_dbg_msg(fmt, ##__VA_ARGS__)
346 #define dbg_gc(fmt, ...)    ubifs_dbg_msg(fmt, ##__VA_ARGS__)
347 #define dbg_scan(fmt, ...)  ubifs_dbg_msg(fmt, ##__VA_ARGS__)
348 #define dbg_rcvry(fmt, ...) ubifs_dbg_msg(fmt, ##__VA_ARGS__)
349
350 #define DBGKEY(key)  ((char *)(key))
351 #define DBGKEY1(key) ((char *)(key))
352
353 static inline int ubifs_debugging_init(struct ubifs_info *c)      { return 0; }
354 static inline void ubifs_debugging_exit(struct ubifs_info *c)     { return; }
355 static inline const char *dbg_ntype(int type)                     { return ""; }
356 static inline const char *dbg_cstate(int cmt_state)               { return ""; }
357 static inline const char *dbg_jhead(int jhead)                    { return ""; }
358 static inline const char *
359 dbg_get_key_dump(const struct ubifs_info *c,
360                  const union ubifs_key *key)                      { return ""; }
361 static inline void dbg_dump_inode(const struct ubifs_info *c,
362                                   const struct inode *inode)      { return; }
363 static inline void dbg_dump_node(const struct ubifs_info *c,
364                                  const void *node)                { return; }
365 static inline void dbg_dump_lpt_node(const struct ubifs_info *c,
366                                      void *node, int lnum,
367                                      int offs)                    { return; }
368 static inline void
369 dbg_dump_budget_req(const struct ubifs_budget_req *req)           { return; }
370 static inline void
371 dbg_dump_lstats(const struct ubifs_lp_stats *lst)                 { return; }
372 static inline void
373 dbg_dump_budg(struct ubifs_info *c,
374               const struct ubifs_budg_info *bi)                   { return; }
375 static inline void dbg_dump_lprop(const struct ubifs_info *c,
376                                   const struct ubifs_lprops *lp)  { return; }
377 static inline void dbg_dump_lprops(struct ubifs_info *c)          { return; }
378 static inline void dbg_dump_lpt_info(struct ubifs_info *c)        { return; }
379 static inline void dbg_dump_leb(const struct ubifs_info *c,
380                                 int lnum)                         { return; }
381 static inline void
382 dbg_dump_znode(const struct ubifs_info *c,
383                const struct ubifs_znode *znode)                   { return; }
384 static inline void dbg_dump_heap(struct ubifs_info *c,
385                                  struct ubifs_lpt_heap *heap,
386                                  int cat)                         { return; }
387 static inline void dbg_dump_pnode(struct ubifs_info *c,
388                                   struct ubifs_pnode *pnode,
389                                   struct ubifs_nnode *parent,
390                                   int iip)                        { return; }
391 static inline void dbg_dump_tnc(struct ubifs_info *c)             { return; }
392 static inline void dbg_dump_index(struct ubifs_info *c)           { return; }
393 static inline void dbg_dump_lpt_lebs(const struct ubifs_info *c)  { return; }
394
395 static inline int dbg_walk_index(struct ubifs_info *c,
396                                  dbg_leaf_callback leaf_cb,
397                                  dbg_znode_callback znode_cb,
398                                  void *priv)                      { return 0; }
399 static inline void dbg_save_space_info(struct ubifs_info *c)      { return; }
400 static inline int dbg_check_space_info(struct ubifs_info *c)      { return 0; }
401 static inline int dbg_check_lprops(struct ubifs_info *c)          { return 0; }
402 static inline int
403 dbg_old_index_check_init(struct ubifs_info *c,
404                          struct ubifs_zbranch *zroot)             { return 0; }
405 static inline int
406 dbg_check_old_index(struct ubifs_info *c,
407                     struct ubifs_zbranch *zroot)                  { return 0; }
408 static inline int dbg_check_cats(struct ubifs_info *c)            { return 0; }
409 static inline int dbg_check_ltab(struct ubifs_info *c)            { return 0; }
410 static inline int dbg_chk_lpt_free_spc(struct ubifs_info *c)      { return 0; }
411 static inline int dbg_chk_lpt_sz(struct ubifs_info *c,
412                                  int action, int len)             { return 0; }
413 static inline int dbg_check_synced_i_size(struct inode *inode)    { return 0; }
414 static inline int dbg_check_dir_size(struct ubifs_info *c,
415                                      const struct inode *dir)     { return 0; }
416 static inline int dbg_check_tnc(struct ubifs_info *c, int extra)  { return 0; }
417 static inline int dbg_check_idx_size(struct ubifs_info *c,
418                                      long long idx_size)          { return 0; }
419 static inline int dbg_check_filesystem(struct ubifs_info *c)      { return 0; }
420 static inline void dbg_check_heap(struct ubifs_info *c,
421                                   struct ubifs_lpt_heap *heap,
422                                   int cat, int add_pos)           { return; }
423 static inline int dbg_check_lpt_nodes(struct ubifs_info *c,
424         struct ubifs_cnode *cnode, int row, int col)              { return 0; }
425 static inline int dbg_check_inode_size(struct ubifs_info *c,
426                                        const struct inode *inode,
427                                        loff_t size)               { return 0; }
428 static inline int
429 dbg_check_data_nodes_order(struct ubifs_info *c,
430                            struct list_head *head)                { return 0; }
431 static inline int
432 dbg_check_nondata_nodes_order(struct ubifs_info *c,
433                               struct list_head *head)             { return 0; }
434
435 static inline int dbg_force_in_the_gaps(void)                     { return 0; }
436 #define dbg_force_in_the_gaps_enabled() 0
437 #define dbg_failure_mode                0
438
439 static inline int dbg_debugfs_init(void)                          { return 0; }
440 static inline void dbg_debugfs_exit(void)                         { return; }
441 static inline int dbg_debugfs_init_fs(struct ubifs_info *c)       { return 0; }
442 static inline int dbg_debugfs_exit_fs(struct ubifs_info *c)       { return 0; }
443
444 #endif /* !CONFIG_UBIFS_FS_DEBUG */
445 #endif /* !__UBIFS_DEBUG_H__ */