md: Fix unfortunate interaction with evms
[linux-2.6/mini2440.git] / fs / ubifs / debug.c
blobce2cd834361805448b4102ebea0b67473127260d
1 /*
2 * This file is part of UBIFS.
4 * Copyright (C) 2006-2008 Nokia Corporation
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.
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.
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
19 * Authors: Artem Bityutskiy (Битюцкий Артём)
20 * Adrian Hunter
24 * This file implements most of the debugging stuff which is compiled in only
25 * when it is enabled. But some debugging check functions are implemented in
26 * corresponding subsystem, just because they are closely related and utilize
27 * various local functions of those subsystems.
30 #define UBIFS_DBG_PRESERVE_UBI
32 #include "ubifs.h"
33 #include <linux/module.h>
34 #include <linux/moduleparam.h>
35 #include <linux/debugfs.h>
36 #include <linux/math64.h>
38 #ifdef CONFIG_UBIFS_FS_DEBUG
40 DEFINE_SPINLOCK(dbg_lock);
42 static char dbg_key_buf0[128];
43 static char dbg_key_buf1[128];
45 unsigned int ubifs_msg_flags = UBIFS_MSG_FLAGS_DEFAULT;
46 unsigned int ubifs_chk_flags = UBIFS_CHK_FLAGS_DEFAULT;
47 unsigned int ubifs_tst_flags;
49 module_param_named(debug_msgs, ubifs_msg_flags, uint, S_IRUGO | S_IWUSR);
50 module_param_named(debug_chks, ubifs_chk_flags, uint, S_IRUGO | S_IWUSR);
51 module_param_named(debug_tsts, ubifs_tst_flags, uint, S_IRUGO | S_IWUSR);
53 MODULE_PARM_DESC(debug_msgs, "Debug message type flags");
54 MODULE_PARM_DESC(debug_chks, "Debug check flags");
55 MODULE_PARM_DESC(debug_tsts, "Debug special test flags");
57 static const char *get_key_fmt(int fmt)
59 switch (fmt) {
60 case UBIFS_SIMPLE_KEY_FMT:
61 return "simple";
62 default:
63 return "unknown/invalid format";
67 static const char *get_key_hash(int hash)
69 switch (hash) {
70 case UBIFS_KEY_HASH_R5:
71 return "R5";
72 case UBIFS_KEY_HASH_TEST:
73 return "test";
74 default:
75 return "unknown/invalid name hash";
79 static const char *get_key_type(int type)
81 switch (type) {
82 case UBIFS_INO_KEY:
83 return "inode";
84 case UBIFS_DENT_KEY:
85 return "direntry";
86 case UBIFS_XENT_KEY:
87 return "xentry";
88 case UBIFS_DATA_KEY:
89 return "data";
90 case UBIFS_TRUN_KEY:
91 return "truncate";
92 default:
93 return "unknown/invalid key";
97 static void sprintf_key(const struct ubifs_info *c, const union ubifs_key *key,
98 char *buffer)
100 char *p = buffer;
101 int type = key_type(c, key);
103 if (c->key_fmt == UBIFS_SIMPLE_KEY_FMT) {
104 switch (type) {
105 case UBIFS_INO_KEY:
106 sprintf(p, "(%lu, %s)", (unsigned long)key_inum(c, key),
107 get_key_type(type));
108 break;
109 case UBIFS_DENT_KEY:
110 case UBIFS_XENT_KEY:
111 sprintf(p, "(%lu, %s, %#08x)",
112 (unsigned long)key_inum(c, key),
113 get_key_type(type), key_hash(c, key));
114 break;
115 case UBIFS_DATA_KEY:
116 sprintf(p, "(%lu, %s, %u)",
117 (unsigned long)key_inum(c, key),
118 get_key_type(type), key_block(c, key));
119 break;
120 case UBIFS_TRUN_KEY:
121 sprintf(p, "(%lu, %s)",
122 (unsigned long)key_inum(c, key),
123 get_key_type(type));
124 break;
125 default:
126 sprintf(p, "(bad key type: %#08x, %#08x)",
127 key->u32[0], key->u32[1]);
129 } else
130 sprintf(p, "bad key format %d", c->key_fmt);
133 const char *dbg_key_str0(const struct ubifs_info *c, const union ubifs_key *key)
135 /* dbg_lock must be held */
136 sprintf_key(c, key, dbg_key_buf0);
137 return dbg_key_buf0;
140 const char *dbg_key_str1(const struct ubifs_info *c, const union ubifs_key *key)
142 /* dbg_lock must be held */
143 sprintf_key(c, key, dbg_key_buf1);
144 return dbg_key_buf1;
147 const char *dbg_ntype(int type)
149 switch (type) {
150 case UBIFS_PAD_NODE:
151 return "padding node";
152 case UBIFS_SB_NODE:
153 return "superblock node";
154 case UBIFS_MST_NODE:
155 return "master node";
156 case UBIFS_REF_NODE:
157 return "reference node";
158 case UBIFS_INO_NODE:
159 return "inode node";
160 case UBIFS_DENT_NODE:
161 return "direntry node";
162 case UBIFS_XENT_NODE:
163 return "xentry node";
164 case UBIFS_DATA_NODE:
165 return "data node";
166 case UBIFS_TRUN_NODE:
167 return "truncate node";
168 case UBIFS_IDX_NODE:
169 return "indexing node";
170 case UBIFS_CS_NODE:
171 return "commit start node";
172 case UBIFS_ORPH_NODE:
173 return "orphan node";
174 default:
175 return "unknown node";
179 static const char *dbg_gtype(int type)
181 switch (type) {
182 case UBIFS_NO_NODE_GROUP:
183 return "no node group";
184 case UBIFS_IN_NODE_GROUP:
185 return "in node group";
186 case UBIFS_LAST_OF_NODE_GROUP:
187 return "last of node group";
188 default:
189 return "unknown";
193 const char *dbg_cstate(int cmt_state)
195 switch (cmt_state) {
196 case COMMIT_RESTING:
197 return "commit resting";
198 case COMMIT_BACKGROUND:
199 return "background commit requested";
200 case COMMIT_REQUIRED:
201 return "commit required";
202 case COMMIT_RUNNING_BACKGROUND:
203 return "BACKGROUND commit running";
204 case COMMIT_RUNNING_REQUIRED:
205 return "commit running and required";
206 case COMMIT_BROKEN:
207 return "broken commit";
208 default:
209 return "unknown commit state";
213 static void dump_ch(const struct ubifs_ch *ch)
215 printk(KERN_DEBUG "\tmagic %#x\n", le32_to_cpu(ch->magic));
216 printk(KERN_DEBUG "\tcrc %#x\n", le32_to_cpu(ch->crc));
217 printk(KERN_DEBUG "\tnode_type %d (%s)\n", ch->node_type,
218 dbg_ntype(ch->node_type));
219 printk(KERN_DEBUG "\tgroup_type %d (%s)\n", ch->group_type,
220 dbg_gtype(ch->group_type));
221 printk(KERN_DEBUG "\tsqnum %llu\n",
222 (unsigned long long)le64_to_cpu(ch->sqnum));
223 printk(KERN_DEBUG "\tlen %u\n", le32_to_cpu(ch->len));
226 void dbg_dump_inode(const struct ubifs_info *c, const struct inode *inode)
228 const struct ubifs_inode *ui = ubifs_inode(inode);
230 printk(KERN_DEBUG "Dump in-memory inode:");
231 printk(KERN_DEBUG "\tinode %lu\n", inode->i_ino);
232 printk(KERN_DEBUG "\tsize %llu\n",
233 (unsigned long long)i_size_read(inode));
234 printk(KERN_DEBUG "\tnlink %u\n", inode->i_nlink);
235 printk(KERN_DEBUG "\tuid %u\n", (unsigned int)inode->i_uid);
236 printk(KERN_DEBUG "\tgid %u\n", (unsigned int)inode->i_gid);
237 printk(KERN_DEBUG "\tatime %u.%u\n",
238 (unsigned int)inode->i_atime.tv_sec,
239 (unsigned int)inode->i_atime.tv_nsec);
240 printk(KERN_DEBUG "\tmtime %u.%u\n",
241 (unsigned int)inode->i_mtime.tv_sec,
242 (unsigned int)inode->i_mtime.tv_nsec);
243 printk(KERN_DEBUG "\tctime %u.%u\n",
244 (unsigned int)inode->i_ctime.tv_sec,
245 (unsigned int)inode->i_ctime.tv_nsec);
246 printk(KERN_DEBUG "\tcreat_sqnum %llu\n", ui->creat_sqnum);
247 printk(KERN_DEBUG "\txattr_size %u\n", ui->xattr_size);
248 printk(KERN_DEBUG "\txattr_cnt %u\n", ui->xattr_cnt);
249 printk(KERN_DEBUG "\txattr_names %u\n", ui->xattr_names);
250 printk(KERN_DEBUG "\tdirty %u\n", ui->dirty);
251 printk(KERN_DEBUG "\txattr %u\n", ui->xattr);
252 printk(KERN_DEBUG "\tbulk_read %u\n", ui->xattr);
253 printk(KERN_DEBUG "\tsynced_i_size %llu\n",
254 (unsigned long long)ui->synced_i_size);
255 printk(KERN_DEBUG "\tui_size %llu\n",
256 (unsigned long long)ui->ui_size);
257 printk(KERN_DEBUG "\tflags %d\n", ui->flags);
258 printk(KERN_DEBUG "\tcompr_type %d\n", ui->compr_type);
259 printk(KERN_DEBUG "\tlast_page_read %lu\n", ui->last_page_read);
260 printk(KERN_DEBUG "\tread_in_a_row %lu\n", ui->read_in_a_row);
261 printk(KERN_DEBUG "\tdata_len %d\n", ui->data_len);
264 void dbg_dump_node(const struct ubifs_info *c, const void *node)
266 int i, n;
267 union ubifs_key key;
268 const struct ubifs_ch *ch = node;
270 if (dbg_failure_mode)
271 return;
273 /* If the magic is incorrect, just hexdump the first bytes */
274 if (le32_to_cpu(ch->magic) != UBIFS_NODE_MAGIC) {
275 printk(KERN_DEBUG "Not a node, first %zu bytes:", UBIFS_CH_SZ);
276 print_hex_dump(KERN_DEBUG, "", DUMP_PREFIX_OFFSET, 32, 1,
277 (void *)node, UBIFS_CH_SZ, 1);
278 return;
281 spin_lock(&dbg_lock);
282 dump_ch(node);
284 switch (ch->node_type) {
285 case UBIFS_PAD_NODE:
287 const struct ubifs_pad_node *pad = node;
289 printk(KERN_DEBUG "\tpad_len %u\n",
290 le32_to_cpu(pad->pad_len));
291 break;
293 case UBIFS_SB_NODE:
295 const struct ubifs_sb_node *sup = node;
296 unsigned int sup_flags = le32_to_cpu(sup->flags);
298 printk(KERN_DEBUG "\tkey_hash %d (%s)\n",
299 (int)sup->key_hash, get_key_hash(sup->key_hash));
300 printk(KERN_DEBUG "\tkey_fmt %d (%s)\n",
301 (int)sup->key_fmt, get_key_fmt(sup->key_fmt));
302 printk(KERN_DEBUG "\tflags %#x\n", sup_flags);
303 printk(KERN_DEBUG "\t big_lpt %u\n",
304 !!(sup_flags & UBIFS_FLG_BIGLPT));
305 printk(KERN_DEBUG "\tmin_io_size %u\n",
306 le32_to_cpu(sup->min_io_size));
307 printk(KERN_DEBUG "\tleb_size %u\n",
308 le32_to_cpu(sup->leb_size));
309 printk(KERN_DEBUG "\tleb_cnt %u\n",
310 le32_to_cpu(sup->leb_cnt));
311 printk(KERN_DEBUG "\tmax_leb_cnt %u\n",
312 le32_to_cpu(sup->max_leb_cnt));
313 printk(KERN_DEBUG "\tmax_bud_bytes %llu\n",
314 (unsigned long long)le64_to_cpu(sup->max_bud_bytes));
315 printk(KERN_DEBUG "\tlog_lebs %u\n",
316 le32_to_cpu(sup->log_lebs));
317 printk(KERN_DEBUG "\tlpt_lebs %u\n",
318 le32_to_cpu(sup->lpt_lebs));
319 printk(KERN_DEBUG "\torph_lebs %u\n",
320 le32_to_cpu(sup->orph_lebs));
321 printk(KERN_DEBUG "\tjhead_cnt %u\n",
322 le32_to_cpu(sup->jhead_cnt));
323 printk(KERN_DEBUG "\tfanout %u\n",
324 le32_to_cpu(sup->fanout));
325 printk(KERN_DEBUG "\tlsave_cnt %u\n",
326 le32_to_cpu(sup->lsave_cnt));
327 printk(KERN_DEBUG "\tdefault_compr %u\n",
328 (int)le16_to_cpu(sup->default_compr));
329 printk(KERN_DEBUG "\trp_size %llu\n",
330 (unsigned long long)le64_to_cpu(sup->rp_size));
331 printk(KERN_DEBUG "\trp_uid %u\n",
332 le32_to_cpu(sup->rp_uid));
333 printk(KERN_DEBUG "\trp_gid %u\n",
334 le32_to_cpu(sup->rp_gid));
335 printk(KERN_DEBUG "\tfmt_version %u\n",
336 le32_to_cpu(sup->fmt_version));
337 printk(KERN_DEBUG "\ttime_gran %u\n",
338 le32_to_cpu(sup->time_gran));
339 printk(KERN_DEBUG "\tUUID %02X%02X%02X%02X-%02X%02X"
340 "-%02X%02X-%02X%02X-%02X%02X%02X%02X%02X%02X\n",
341 sup->uuid[0], sup->uuid[1], sup->uuid[2], sup->uuid[3],
342 sup->uuid[4], sup->uuid[5], sup->uuid[6], sup->uuid[7],
343 sup->uuid[8], sup->uuid[9], sup->uuid[10], sup->uuid[11],
344 sup->uuid[12], sup->uuid[13], sup->uuid[14],
345 sup->uuid[15]);
346 break;
348 case UBIFS_MST_NODE:
350 const struct ubifs_mst_node *mst = node;
352 printk(KERN_DEBUG "\thighest_inum %llu\n",
353 (unsigned long long)le64_to_cpu(mst->highest_inum));
354 printk(KERN_DEBUG "\tcommit number %llu\n",
355 (unsigned long long)le64_to_cpu(mst->cmt_no));
356 printk(KERN_DEBUG "\tflags %#x\n",
357 le32_to_cpu(mst->flags));
358 printk(KERN_DEBUG "\tlog_lnum %u\n",
359 le32_to_cpu(mst->log_lnum));
360 printk(KERN_DEBUG "\troot_lnum %u\n",
361 le32_to_cpu(mst->root_lnum));
362 printk(KERN_DEBUG "\troot_offs %u\n",
363 le32_to_cpu(mst->root_offs));
364 printk(KERN_DEBUG "\troot_len %u\n",
365 le32_to_cpu(mst->root_len));
366 printk(KERN_DEBUG "\tgc_lnum %u\n",
367 le32_to_cpu(mst->gc_lnum));
368 printk(KERN_DEBUG "\tihead_lnum %u\n",
369 le32_to_cpu(mst->ihead_lnum));
370 printk(KERN_DEBUG "\tihead_offs %u\n",
371 le32_to_cpu(mst->ihead_offs));
372 printk(KERN_DEBUG "\tindex_size %llu\n",
373 (unsigned long long)le64_to_cpu(mst->index_size));
374 printk(KERN_DEBUG "\tlpt_lnum %u\n",
375 le32_to_cpu(mst->lpt_lnum));
376 printk(KERN_DEBUG "\tlpt_offs %u\n",
377 le32_to_cpu(mst->lpt_offs));
378 printk(KERN_DEBUG "\tnhead_lnum %u\n",
379 le32_to_cpu(mst->nhead_lnum));
380 printk(KERN_DEBUG "\tnhead_offs %u\n",
381 le32_to_cpu(mst->nhead_offs));
382 printk(KERN_DEBUG "\tltab_lnum %u\n",
383 le32_to_cpu(mst->ltab_lnum));
384 printk(KERN_DEBUG "\tltab_offs %u\n",
385 le32_to_cpu(mst->ltab_offs));
386 printk(KERN_DEBUG "\tlsave_lnum %u\n",
387 le32_to_cpu(mst->lsave_lnum));
388 printk(KERN_DEBUG "\tlsave_offs %u\n",
389 le32_to_cpu(mst->lsave_offs));
390 printk(KERN_DEBUG "\tlscan_lnum %u\n",
391 le32_to_cpu(mst->lscan_lnum));
392 printk(KERN_DEBUG "\tleb_cnt %u\n",
393 le32_to_cpu(mst->leb_cnt));
394 printk(KERN_DEBUG "\tempty_lebs %u\n",
395 le32_to_cpu(mst->empty_lebs));
396 printk(KERN_DEBUG "\tidx_lebs %u\n",
397 le32_to_cpu(mst->idx_lebs));
398 printk(KERN_DEBUG "\ttotal_free %llu\n",
399 (unsigned long long)le64_to_cpu(mst->total_free));
400 printk(KERN_DEBUG "\ttotal_dirty %llu\n",
401 (unsigned long long)le64_to_cpu(mst->total_dirty));
402 printk(KERN_DEBUG "\ttotal_used %llu\n",
403 (unsigned long long)le64_to_cpu(mst->total_used));
404 printk(KERN_DEBUG "\ttotal_dead %llu\n",
405 (unsigned long long)le64_to_cpu(mst->total_dead));
406 printk(KERN_DEBUG "\ttotal_dark %llu\n",
407 (unsigned long long)le64_to_cpu(mst->total_dark));
408 break;
410 case UBIFS_REF_NODE:
412 const struct ubifs_ref_node *ref = node;
414 printk(KERN_DEBUG "\tlnum %u\n",
415 le32_to_cpu(ref->lnum));
416 printk(KERN_DEBUG "\toffs %u\n",
417 le32_to_cpu(ref->offs));
418 printk(KERN_DEBUG "\tjhead %u\n",
419 le32_to_cpu(ref->jhead));
420 break;
422 case UBIFS_INO_NODE:
424 const struct ubifs_ino_node *ino = node;
426 key_read(c, &ino->key, &key);
427 printk(KERN_DEBUG "\tkey %s\n", DBGKEY(&key));
428 printk(KERN_DEBUG "\tcreat_sqnum %llu\n",
429 (unsigned long long)le64_to_cpu(ino->creat_sqnum));
430 printk(KERN_DEBUG "\tsize %llu\n",
431 (unsigned long long)le64_to_cpu(ino->size));
432 printk(KERN_DEBUG "\tnlink %u\n",
433 le32_to_cpu(ino->nlink));
434 printk(KERN_DEBUG "\tatime %lld.%u\n",
435 (long long)le64_to_cpu(ino->atime_sec),
436 le32_to_cpu(ino->atime_nsec));
437 printk(KERN_DEBUG "\tmtime %lld.%u\n",
438 (long long)le64_to_cpu(ino->mtime_sec),
439 le32_to_cpu(ino->mtime_nsec));
440 printk(KERN_DEBUG "\tctime %lld.%u\n",
441 (long long)le64_to_cpu(ino->ctime_sec),
442 le32_to_cpu(ino->ctime_nsec));
443 printk(KERN_DEBUG "\tuid %u\n",
444 le32_to_cpu(ino->uid));
445 printk(KERN_DEBUG "\tgid %u\n",
446 le32_to_cpu(ino->gid));
447 printk(KERN_DEBUG "\tmode %u\n",
448 le32_to_cpu(ino->mode));
449 printk(KERN_DEBUG "\tflags %#x\n",
450 le32_to_cpu(ino->flags));
451 printk(KERN_DEBUG "\txattr_cnt %u\n",
452 le32_to_cpu(ino->xattr_cnt));
453 printk(KERN_DEBUG "\txattr_size %u\n",
454 le32_to_cpu(ino->xattr_size));
455 printk(KERN_DEBUG "\txattr_names %u\n",
456 le32_to_cpu(ino->xattr_names));
457 printk(KERN_DEBUG "\tcompr_type %#x\n",
458 (int)le16_to_cpu(ino->compr_type));
459 printk(KERN_DEBUG "\tdata len %u\n",
460 le32_to_cpu(ino->data_len));
461 break;
463 case UBIFS_DENT_NODE:
464 case UBIFS_XENT_NODE:
466 const struct ubifs_dent_node *dent = node;
467 int nlen = le16_to_cpu(dent->nlen);
469 key_read(c, &dent->key, &key);
470 printk(KERN_DEBUG "\tkey %s\n", DBGKEY(&key));
471 printk(KERN_DEBUG "\tinum %llu\n",
472 (unsigned long long)le64_to_cpu(dent->inum));
473 printk(KERN_DEBUG "\ttype %d\n", (int)dent->type);
474 printk(KERN_DEBUG "\tnlen %d\n", nlen);
475 printk(KERN_DEBUG "\tname ");
477 if (nlen > UBIFS_MAX_NLEN)
478 printk(KERN_DEBUG "(bad name length, not printing, "
479 "bad or corrupted node)");
480 else {
481 for (i = 0; i < nlen && dent->name[i]; i++)
482 printk(KERN_CONT "%c", dent->name[i]);
484 printk(KERN_CONT "\n");
486 break;
488 case UBIFS_DATA_NODE:
490 const struct ubifs_data_node *dn = node;
491 int dlen = le32_to_cpu(ch->len) - UBIFS_DATA_NODE_SZ;
493 key_read(c, &dn->key, &key);
494 printk(KERN_DEBUG "\tkey %s\n", DBGKEY(&key));
495 printk(KERN_DEBUG "\tsize %u\n",
496 le32_to_cpu(dn->size));
497 printk(KERN_DEBUG "\tcompr_typ %d\n",
498 (int)le16_to_cpu(dn->compr_type));
499 printk(KERN_DEBUG "\tdata size %d\n",
500 dlen);
501 printk(KERN_DEBUG "\tdata:\n");
502 print_hex_dump(KERN_DEBUG, "\t", DUMP_PREFIX_OFFSET, 32, 1,
503 (void *)&dn->data, dlen, 0);
504 break;
506 case UBIFS_TRUN_NODE:
508 const struct ubifs_trun_node *trun = node;
510 printk(KERN_DEBUG "\tinum %u\n",
511 le32_to_cpu(trun->inum));
512 printk(KERN_DEBUG "\told_size %llu\n",
513 (unsigned long long)le64_to_cpu(trun->old_size));
514 printk(KERN_DEBUG "\tnew_size %llu\n",
515 (unsigned long long)le64_to_cpu(trun->new_size));
516 break;
518 case UBIFS_IDX_NODE:
520 const struct ubifs_idx_node *idx = node;
522 n = le16_to_cpu(idx->child_cnt);
523 printk(KERN_DEBUG "\tchild_cnt %d\n", n);
524 printk(KERN_DEBUG "\tlevel %d\n",
525 (int)le16_to_cpu(idx->level));
526 printk(KERN_DEBUG "\tBranches:\n");
528 for (i = 0; i < n && i < c->fanout - 1; i++) {
529 const struct ubifs_branch *br;
531 br = ubifs_idx_branch(c, idx, i);
532 key_read(c, &br->key, &key);
533 printk(KERN_DEBUG "\t%d: LEB %d:%d len %d key %s\n",
534 i, le32_to_cpu(br->lnum), le32_to_cpu(br->offs),
535 le32_to_cpu(br->len), DBGKEY(&key));
537 break;
539 case UBIFS_CS_NODE:
540 break;
541 case UBIFS_ORPH_NODE:
543 const struct ubifs_orph_node *orph = node;
545 printk(KERN_DEBUG "\tcommit number %llu\n",
546 (unsigned long long)
547 le64_to_cpu(orph->cmt_no) & LLONG_MAX);
548 printk(KERN_DEBUG "\tlast node flag %llu\n",
549 (unsigned long long)(le64_to_cpu(orph->cmt_no)) >> 63);
550 n = (le32_to_cpu(ch->len) - UBIFS_ORPH_NODE_SZ) >> 3;
551 printk(KERN_DEBUG "\t%d orphan inode numbers:\n", n);
552 for (i = 0; i < n; i++)
553 printk(KERN_DEBUG "\t ino %llu\n",
554 (unsigned long long)le64_to_cpu(orph->inos[i]));
555 break;
557 default:
558 printk(KERN_DEBUG "node type %d was not recognized\n",
559 (int)ch->node_type);
561 spin_unlock(&dbg_lock);
564 void dbg_dump_budget_req(const struct ubifs_budget_req *req)
566 spin_lock(&dbg_lock);
567 printk(KERN_DEBUG "Budgeting request: new_ino %d, dirtied_ino %d\n",
568 req->new_ino, req->dirtied_ino);
569 printk(KERN_DEBUG "\tnew_ino_d %d, dirtied_ino_d %d\n",
570 req->new_ino_d, req->dirtied_ino_d);
571 printk(KERN_DEBUG "\tnew_page %d, dirtied_page %d\n",
572 req->new_page, req->dirtied_page);
573 printk(KERN_DEBUG "\tnew_dent %d, mod_dent %d\n",
574 req->new_dent, req->mod_dent);
575 printk(KERN_DEBUG "\tidx_growth %d\n", req->idx_growth);
576 printk(KERN_DEBUG "\tdata_growth %d dd_growth %d\n",
577 req->data_growth, req->dd_growth);
578 spin_unlock(&dbg_lock);
581 void dbg_dump_lstats(const struct ubifs_lp_stats *lst)
583 spin_lock(&dbg_lock);
584 printk(KERN_DEBUG "(pid %d) Lprops statistics: empty_lebs %d, "
585 "idx_lebs %d\n", current->pid, lst->empty_lebs, lst->idx_lebs);
586 printk(KERN_DEBUG "\ttaken_empty_lebs %d, total_free %lld, "
587 "total_dirty %lld\n", lst->taken_empty_lebs, lst->total_free,
588 lst->total_dirty);
589 printk(KERN_DEBUG "\ttotal_used %lld, total_dark %lld, "
590 "total_dead %lld\n", lst->total_used, lst->total_dark,
591 lst->total_dead);
592 spin_unlock(&dbg_lock);
595 void dbg_dump_budg(struct ubifs_info *c)
597 int i;
598 struct rb_node *rb;
599 struct ubifs_bud *bud;
600 struct ubifs_gced_idx_leb *idx_gc;
601 long long available, outstanding, free;
603 ubifs_assert(spin_is_locked(&c->space_lock));
604 spin_lock(&dbg_lock);
605 printk(KERN_DEBUG "(pid %d) Budgeting info: budg_data_growth %lld, "
606 "budg_dd_growth %lld, budg_idx_growth %lld\n", current->pid,
607 c->budg_data_growth, c->budg_dd_growth, c->budg_idx_growth);
608 printk(KERN_DEBUG "\tdata budget sum %lld, total budget sum %lld, "
609 "freeable_cnt %d\n", c->budg_data_growth + c->budg_dd_growth,
610 c->budg_data_growth + c->budg_dd_growth + c->budg_idx_growth,
611 c->freeable_cnt);
612 printk(KERN_DEBUG "\tmin_idx_lebs %d, old_idx_sz %lld, "
613 "calc_idx_sz %lld, idx_gc_cnt %d\n", c->min_idx_lebs,
614 c->old_idx_sz, c->calc_idx_sz, c->idx_gc_cnt);
615 printk(KERN_DEBUG "\tdirty_pg_cnt %ld, dirty_zn_cnt %ld, "
616 "clean_zn_cnt %ld\n", atomic_long_read(&c->dirty_pg_cnt),
617 atomic_long_read(&c->dirty_zn_cnt),
618 atomic_long_read(&c->clean_zn_cnt));
619 printk(KERN_DEBUG "\tdark_wm %d, dead_wm %d, max_idx_node_sz %d\n",
620 c->dark_wm, c->dead_wm, c->max_idx_node_sz);
621 printk(KERN_DEBUG "\tgc_lnum %d, ihead_lnum %d\n",
622 c->gc_lnum, c->ihead_lnum);
623 /* If we are in R/O mode, journal heads do not exist */
624 if (c->jheads)
625 for (i = 0; i < c->jhead_cnt; i++)
626 printk(KERN_DEBUG "\tjhead %d\t LEB %d\n",
627 c->jheads[i].wbuf.jhead, c->jheads[i].wbuf.lnum);
628 for (rb = rb_first(&c->buds); rb; rb = rb_next(rb)) {
629 bud = rb_entry(rb, struct ubifs_bud, rb);
630 printk(KERN_DEBUG "\tbud LEB %d\n", bud->lnum);
632 list_for_each_entry(bud, &c->old_buds, list)
633 printk(KERN_DEBUG "\told bud LEB %d\n", bud->lnum);
634 list_for_each_entry(idx_gc, &c->idx_gc, list)
635 printk(KERN_DEBUG "\tGC'ed idx LEB %d unmap %d\n",
636 idx_gc->lnum, idx_gc->unmap);
637 printk(KERN_DEBUG "\tcommit state %d\n", c->cmt_state);
639 /* Print budgeting predictions */
640 available = ubifs_calc_available(c, c->min_idx_lebs);
641 outstanding = c->budg_data_growth + c->budg_dd_growth;
642 free = ubifs_get_free_space_nolock(c);
643 printk(KERN_DEBUG "Budgeting predictions:\n");
644 printk(KERN_DEBUG "\tavailable: %lld, outstanding %lld, free %lld\n",
645 available, outstanding, free);
646 spin_unlock(&dbg_lock);
649 void dbg_dump_lprop(const struct ubifs_info *c, const struct ubifs_lprops *lp)
651 printk(KERN_DEBUG "LEB %d lprops: free %d, dirty %d (used %d), "
652 "flags %#x\n", lp->lnum, lp->free, lp->dirty,
653 c->leb_size - lp->free - lp->dirty, lp->flags);
656 void dbg_dump_lprops(struct ubifs_info *c)
658 int lnum, err;
659 struct ubifs_lprops lp;
660 struct ubifs_lp_stats lst;
662 printk(KERN_DEBUG "(pid %d) start dumping LEB properties\n",
663 current->pid);
664 ubifs_get_lp_stats(c, &lst);
665 dbg_dump_lstats(&lst);
667 for (lnum = c->main_first; lnum < c->leb_cnt; lnum++) {
668 err = ubifs_read_one_lp(c, lnum, &lp);
669 if (err)
670 ubifs_err("cannot read lprops for LEB %d", lnum);
672 dbg_dump_lprop(c, &lp);
674 printk(KERN_DEBUG "(pid %d) finish dumping LEB properties\n",
675 current->pid);
678 void dbg_dump_lpt_info(struct ubifs_info *c)
680 int i;
682 spin_lock(&dbg_lock);
683 printk(KERN_DEBUG "(pid %d) dumping LPT information\n", current->pid);
684 printk(KERN_DEBUG "\tlpt_sz: %lld\n", c->lpt_sz);
685 printk(KERN_DEBUG "\tpnode_sz: %d\n", c->pnode_sz);
686 printk(KERN_DEBUG "\tnnode_sz: %d\n", c->nnode_sz);
687 printk(KERN_DEBUG "\tltab_sz: %d\n", c->ltab_sz);
688 printk(KERN_DEBUG "\tlsave_sz: %d\n", c->lsave_sz);
689 printk(KERN_DEBUG "\tbig_lpt: %d\n", c->big_lpt);
690 printk(KERN_DEBUG "\tlpt_hght: %d\n", c->lpt_hght);
691 printk(KERN_DEBUG "\tpnode_cnt: %d\n", c->pnode_cnt);
692 printk(KERN_DEBUG "\tnnode_cnt: %d\n", c->nnode_cnt);
693 printk(KERN_DEBUG "\tdirty_pn_cnt: %d\n", c->dirty_pn_cnt);
694 printk(KERN_DEBUG "\tdirty_nn_cnt: %d\n", c->dirty_nn_cnt);
695 printk(KERN_DEBUG "\tlsave_cnt: %d\n", c->lsave_cnt);
696 printk(KERN_DEBUG "\tspace_bits: %d\n", c->space_bits);
697 printk(KERN_DEBUG "\tlpt_lnum_bits: %d\n", c->lpt_lnum_bits);
698 printk(KERN_DEBUG "\tlpt_offs_bits: %d\n", c->lpt_offs_bits);
699 printk(KERN_DEBUG "\tlpt_spc_bits: %d\n", c->lpt_spc_bits);
700 printk(KERN_DEBUG "\tpcnt_bits: %d\n", c->pcnt_bits);
701 printk(KERN_DEBUG "\tlnum_bits: %d\n", c->lnum_bits);
702 printk(KERN_DEBUG "\tLPT root is at %d:%d\n", c->lpt_lnum, c->lpt_offs);
703 printk(KERN_DEBUG "\tLPT head is at %d:%d\n",
704 c->nhead_lnum, c->nhead_offs);
705 printk(KERN_DEBUG "\tLPT ltab is at %d:%d\n",
706 c->ltab_lnum, c->ltab_offs);
707 if (c->big_lpt)
708 printk(KERN_DEBUG "\tLPT lsave is at %d:%d\n",
709 c->lsave_lnum, c->lsave_offs);
710 for (i = 0; i < c->lpt_lebs; i++)
711 printk(KERN_DEBUG "\tLPT LEB %d free %d dirty %d tgc %d "
712 "cmt %d\n", i + c->lpt_first, c->ltab[i].free,
713 c->ltab[i].dirty, c->ltab[i].tgc, c->ltab[i].cmt);
714 spin_unlock(&dbg_lock);
717 void dbg_dump_leb(const struct ubifs_info *c, int lnum)
719 struct ubifs_scan_leb *sleb;
720 struct ubifs_scan_node *snod;
722 if (dbg_failure_mode)
723 return;
725 printk(KERN_DEBUG "(pid %d) start dumping LEB %d\n",
726 current->pid, lnum);
727 sleb = ubifs_scan(c, lnum, 0, c->dbg->buf);
728 if (IS_ERR(sleb)) {
729 ubifs_err("scan error %d", (int)PTR_ERR(sleb));
730 return;
733 printk(KERN_DEBUG "LEB %d has %d nodes ending at %d\n", lnum,
734 sleb->nodes_cnt, sleb->endpt);
736 list_for_each_entry(snod, &sleb->nodes, list) {
737 cond_resched();
738 printk(KERN_DEBUG "Dumping node at LEB %d:%d len %d\n", lnum,
739 snod->offs, snod->len);
740 dbg_dump_node(c, snod->node);
743 printk(KERN_DEBUG "(pid %d) finish dumping LEB %d\n",
744 current->pid, lnum);
745 ubifs_scan_destroy(sleb);
746 return;
749 void dbg_dump_znode(const struct ubifs_info *c,
750 const struct ubifs_znode *znode)
752 int n;
753 const struct ubifs_zbranch *zbr;
755 spin_lock(&dbg_lock);
756 if (znode->parent)
757 zbr = &znode->parent->zbranch[znode->iip];
758 else
759 zbr = &c->zroot;
761 printk(KERN_DEBUG "znode %p, LEB %d:%d len %d parent %p iip %d level %d"
762 " child_cnt %d flags %lx\n", znode, zbr->lnum, zbr->offs,
763 zbr->len, znode->parent, znode->iip, znode->level,
764 znode->child_cnt, znode->flags);
766 if (znode->child_cnt <= 0 || znode->child_cnt > c->fanout) {
767 spin_unlock(&dbg_lock);
768 return;
771 printk(KERN_DEBUG "zbranches:\n");
772 for (n = 0; n < znode->child_cnt; n++) {
773 zbr = &znode->zbranch[n];
774 if (znode->level > 0)
775 printk(KERN_DEBUG "\t%d: znode %p LEB %d:%d len %d key "
776 "%s\n", n, zbr->znode, zbr->lnum,
777 zbr->offs, zbr->len,
778 DBGKEY(&zbr->key));
779 else
780 printk(KERN_DEBUG "\t%d: LNC %p LEB %d:%d len %d key "
781 "%s\n", n, zbr->znode, zbr->lnum,
782 zbr->offs, zbr->len,
783 DBGKEY(&zbr->key));
785 spin_unlock(&dbg_lock);
788 void dbg_dump_heap(struct ubifs_info *c, struct ubifs_lpt_heap *heap, int cat)
790 int i;
792 printk(KERN_DEBUG "(pid %d) start dumping heap cat %d (%d elements)\n",
793 current->pid, cat, heap->cnt);
794 for (i = 0; i < heap->cnt; i++) {
795 struct ubifs_lprops *lprops = heap->arr[i];
797 printk(KERN_DEBUG "\t%d. LEB %d hpos %d free %d dirty %d "
798 "flags %d\n", i, lprops->lnum, lprops->hpos,
799 lprops->free, lprops->dirty, lprops->flags);
801 printk(KERN_DEBUG "(pid %d) finish dumping heap\n", current->pid);
804 void dbg_dump_pnode(struct ubifs_info *c, struct ubifs_pnode *pnode,
805 struct ubifs_nnode *parent, int iip)
807 int i;
809 printk(KERN_DEBUG "(pid %d) dumping pnode:\n", current->pid);
810 printk(KERN_DEBUG "\taddress %zx parent %zx cnext %zx\n",
811 (size_t)pnode, (size_t)parent, (size_t)pnode->cnext);
812 printk(KERN_DEBUG "\tflags %lu iip %d level %d num %d\n",
813 pnode->flags, iip, pnode->level, pnode->num);
814 for (i = 0; i < UBIFS_LPT_FANOUT; i++) {
815 struct ubifs_lprops *lp = &pnode->lprops[i];
817 printk(KERN_DEBUG "\t%d: free %d dirty %d flags %d lnum %d\n",
818 i, lp->free, lp->dirty, lp->flags, lp->lnum);
822 void dbg_dump_tnc(struct ubifs_info *c)
824 struct ubifs_znode *znode;
825 int level;
827 printk(KERN_DEBUG "\n");
828 printk(KERN_DEBUG "(pid %d) start dumping TNC tree\n", current->pid);
829 znode = ubifs_tnc_levelorder_next(c->zroot.znode, NULL);
830 level = znode->level;
831 printk(KERN_DEBUG "== Level %d ==\n", level);
832 while (znode) {
833 if (level != znode->level) {
834 level = znode->level;
835 printk(KERN_DEBUG "== Level %d ==\n", level);
837 dbg_dump_znode(c, znode);
838 znode = ubifs_tnc_levelorder_next(c->zroot.znode, znode);
840 printk(KERN_DEBUG "(pid %d) finish dumping TNC tree\n", current->pid);
843 static int dump_znode(struct ubifs_info *c, struct ubifs_znode *znode,
844 void *priv)
846 dbg_dump_znode(c, znode);
847 return 0;
851 * dbg_dump_index - dump the on-flash index.
852 * @c: UBIFS file-system description object
854 * This function dumps whole UBIFS indexing B-tree, unlike 'dbg_dump_tnc()'
855 * which dumps only in-memory znodes and does not read znodes which from flash.
857 void dbg_dump_index(struct ubifs_info *c)
859 dbg_walk_index(c, NULL, dump_znode, NULL);
863 * dbg_save_space_info - save information about flash space.
864 * @c: UBIFS file-system description object
866 * This function saves information about UBIFS free space, dirty space, etc, in
867 * order to check it later.
869 void dbg_save_space_info(struct ubifs_info *c)
871 struct ubifs_debug_info *d = c->dbg;
873 ubifs_get_lp_stats(c, &d->saved_lst);
875 spin_lock(&c->space_lock);
876 d->saved_free = ubifs_get_free_space_nolock(c);
877 spin_unlock(&c->space_lock);
881 * dbg_check_space_info - check flash space information.
882 * @c: UBIFS file-system description object
884 * This function compares current flash space information with the information
885 * which was saved when the 'dbg_save_space_info()' function was called.
886 * Returns zero if the information has not changed, and %-EINVAL it it has
887 * changed.
889 int dbg_check_space_info(struct ubifs_info *c)
891 struct ubifs_debug_info *d = c->dbg;
892 struct ubifs_lp_stats lst;
893 long long avail, free;
895 spin_lock(&c->space_lock);
896 avail = ubifs_calc_available(c, c->min_idx_lebs);
897 spin_unlock(&c->space_lock);
898 free = ubifs_get_free_space(c);
900 if (free != d->saved_free) {
901 ubifs_err("free space changed from %lld to %lld",
902 d->saved_free, free);
903 goto out;
906 return 0;
908 out:
909 ubifs_msg("saved lprops statistics dump");
910 dbg_dump_lstats(&d->saved_lst);
911 ubifs_get_lp_stats(c, &lst);
912 ubifs_msg("current lprops statistics dump");
913 dbg_dump_lstats(&d->saved_lst);
914 spin_lock(&c->space_lock);
915 dbg_dump_budg(c);
916 spin_unlock(&c->space_lock);
917 dump_stack();
918 return -EINVAL;
922 * dbg_check_synced_i_size - check synchronized inode size.
923 * @inode: inode to check
925 * If inode is clean, synchronized inode size has to be equivalent to current
926 * inode size. This function has to be called only for locked inodes (@i_mutex
927 * has to be locked). Returns %0 if synchronized inode size if correct, and
928 * %-EINVAL if not.
930 int dbg_check_synced_i_size(struct inode *inode)
932 int err = 0;
933 struct ubifs_inode *ui = ubifs_inode(inode);
935 if (!(ubifs_chk_flags & UBIFS_CHK_GEN))
936 return 0;
937 if (!S_ISREG(inode->i_mode))
938 return 0;
940 mutex_lock(&ui->ui_mutex);
941 spin_lock(&ui->ui_lock);
942 if (ui->ui_size != ui->synced_i_size && !ui->dirty) {
943 ubifs_err("ui_size is %lld, synced_i_size is %lld, but inode "
944 "is clean", ui->ui_size, ui->synced_i_size);
945 ubifs_err("i_ino %lu, i_mode %#x, i_size %lld", inode->i_ino,
946 inode->i_mode, i_size_read(inode));
947 dbg_dump_stack();
948 err = -EINVAL;
950 spin_unlock(&ui->ui_lock);
951 mutex_unlock(&ui->ui_mutex);
952 return err;
956 * dbg_check_dir - check directory inode size and link count.
957 * @c: UBIFS file-system description object
958 * @dir: the directory to calculate size for
959 * @size: the result is returned here
961 * This function makes sure that directory size and link count are correct.
962 * Returns zero in case of success and a negative error code in case of
963 * failure.
965 * Note, it is good idea to make sure the @dir->i_mutex is locked before
966 * calling this function.
968 int dbg_check_dir_size(struct ubifs_info *c, const struct inode *dir)
970 unsigned int nlink = 2;
971 union ubifs_key key;
972 struct ubifs_dent_node *dent, *pdent = NULL;
973 struct qstr nm = { .name = NULL };
974 loff_t size = UBIFS_INO_NODE_SZ;
976 if (!(ubifs_chk_flags & UBIFS_CHK_GEN))
977 return 0;
979 if (!S_ISDIR(dir->i_mode))
980 return 0;
982 lowest_dent_key(c, &key, dir->i_ino);
983 while (1) {
984 int err;
986 dent = ubifs_tnc_next_ent(c, &key, &nm);
987 if (IS_ERR(dent)) {
988 err = PTR_ERR(dent);
989 if (err == -ENOENT)
990 break;
991 return err;
994 nm.name = dent->name;
995 nm.len = le16_to_cpu(dent->nlen);
996 size += CALC_DENT_SIZE(nm.len);
997 if (dent->type == UBIFS_ITYPE_DIR)
998 nlink += 1;
999 kfree(pdent);
1000 pdent = dent;
1001 key_read(c, &dent->key, &key);
1003 kfree(pdent);
1005 if (i_size_read(dir) != size) {
1006 ubifs_err("directory inode %lu has size %llu, "
1007 "but calculated size is %llu", dir->i_ino,
1008 (unsigned long long)i_size_read(dir),
1009 (unsigned long long)size);
1010 dump_stack();
1011 return -EINVAL;
1013 if (dir->i_nlink != nlink) {
1014 ubifs_err("directory inode %lu has nlink %u, but calculated "
1015 "nlink is %u", dir->i_ino, dir->i_nlink, nlink);
1016 dump_stack();
1017 return -EINVAL;
1020 return 0;
1024 * dbg_check_key_order - make sure that colliding keys are properly ordered.
1025 * @c: UBIFS file-system description object
1026 * @zbr1: first zbranch
1027 * @zbr2: following zbranch
1029 * In UBIFS indexing B-tree colliding keys has to be sorted in binary order of
1030 * names of the direntries/xentries which are referred by the keys. This
1031 * function reads direntries/xentries referred by @zbr1 and @zbr2 and makes
1032 * sure the name of direntry/xentry referred by @zbr1 is less than
1033 * direntry/xentry referred by @zbr2. Returns zero if this is true, %1 if not,
1034 * and a negative error code in case of failure.
1036 static int dbg_check_key_order(struct ubifs_info *c, struct ubifs_zbranch *zbr1,
1037 struct ubifs_zbranch *zbr2)
1039 int err, nlen1, nlen2, cmp;
1040 struct ubifs_dent_node *dent1, *dent2;
1041 union ubifs_key key;
1043 ubifs_assert(!keys_cmp(c, &zbr1->key, &zbr2->key));
1044 dent1 = kmalloc(UBIFS_MAX_DENT_NODE_SZ, GFP_NOFS);
1045 if (!dent1)
1046 return -ENOMEM;
1047 dent2 = kmalloc(UBIFS_MAX_DENT_NODE_SZ, GFP_NOFS);
1048 if (!dent2) {
1049 err = -ENOMEM;
1050 goto out_free;
1053 err = ubifs_tnc_read_node(c, zbr1, dent1);
1054 if (err)
1055 goto out_free;
1056 err = ubifs_validate_entry(c, dent1);
1057 if (err)
1058 goto out_free;
1060 err = ubifs_tnc_read_node(c, zbr2, dent2);
1061 if (err)
1062 goto out_free;
1063 err = ubifs_validate_entry(c, dent2);
1064 if (err)
1065 goto out_free;
1067 /* Make sure node keys are the same as in zbranch */
1068 err = 1;
1069 key_read(c, &dent1->key, &key);
1070 if (keys_cmp(c, &zbr1->key, &key)) {
1071 dbg_err("1st entry at %d:%d has key %s", zbr1->lnum,
1072 zbr1->offs, DBGKEY(&key));
1073 dbg_err("but it should have key %s according to tnc",
1074 DBGKEY(&zbr1->key));
1075 dbg_dump_node(c, dent1);
1076 goto out_free;
1079 key_read(c, &dent2->key, &key);
1080 if (keys_cmp(c, &zbr2->key, &key)) {
1081 dbg_err("2nd entry at %d:%d has key %s", zbr1->lnum,
1082 zbr1->offs, DBGKEY(&key));
1083 dbg_err("but it should have key %s according to tnc",
1084 DBGKEY(&zbr2->key));
1085 dbg_dump_node(c, dent2);
1086 goto out_free;
1089 nlen1 = le16_to_cpu(dent1->nlen);
1090 nlen2 = le16_to_cpu(dent2->nlen);
1092 cmp = memcmp(dent1->name, dent2->name, min_t(int, nlen1, nlen2));
1093 if (cmp < 0 || (cmp == 0 && nlen1 < nlen2)) {
1094 err = 0;
1095 goto out_free;
1097 if (cmp == 0 && nlen1 == nlen2)
1098 dbg_err("2 xent/dent nodes with the same name");
1099 else
1100 dbg_err("bad order of colliding key %s",
1101 DBGKEY(&key));
1103 ubifs_msg("first node at %d:%d\n", zbr1->lnum, zbr1->offs);
1104 dbg_dump_node(c, dent1);
1105 ubifs_msg("second node at %d:%d\n", zbr2->lnum, zbr2->offs);
1106 dbg_dump_node(c, dent2);
1108 out_free:
1109 kfree(dent2);
1110 kfree(dent1);
1111 return err;
1115 * dbg_check_znode - check if znode is all right.
1116 * @c: UBIFS file-system description object
1117 * @zbr: zbranch which points to this znode
1119 * This function makes sure that znode referred to by @zbr is all right.
1120 * Returns zero if it is, and %-EINVAL if it is not.
1122 static int dbg_check_znode(struct ubifs_info *c, struct ubifs_zbranch *zbr)
1124 struct ubifs_znode *znode = zbr->znode;
1125 struct ubifs_znode *zp = znode->parent;
1126 int n, err, cmp;
1128 if (znode->child_cnt <= 0 || znode->child_cnt > c->fanout) {
1129 err = 1;
1130 goto out;
1132 if (znode->level < 0) {
1133 err = 2;
1134 goto out;
1136 if (znode->iip < 0 || znode->iip >= c->fanout) {
1137 err = 3;
1138 goto out;
1141 if (zbr->len == 0)
1142 /* Only dirty zbranch may have no on-flash nodes */
1143 if (!ubifs_zn_dirty(znode)) {
1144 err = 4;
1145 goto out;
1148 if (ubifs_zn_dirty(znode)) {
1150 * If znode is dirty, its parent has to be dirty as well. The
1151 * order of the operation is important, so we have to have
1152 * memory barriers.
1154 smp_mb();
1155 if (zp && !ubifs_zn_dirty(zp)) {
1157 * The dirty flag is atomic and is cleared outside the
1158 * TNC mutex, so znode's dirty flag may now have
1159 * been cleared. The child is always cleared before the
1160 * parent, so we just need to check again.
1162 smp_mb();
1163 if (ubifs_zn_dirty(znode)) {
1164 err = 5;
1165 goto out;
1170 if (zp) {
1171 const union ubifs_key *min, *max;
1173 if (znode->level != zp->level - 1) {
1174 err = 6;
1175 goto out;
1178 /* Make sure the 'parent' pointer in our znode is correct */
1179 err = ubifs_search_zbranch(c, zp, &zbr->key, &n);
1180 if (!err) {
1181 /* This zbranch does not exist in the parent */
1182 err = 7;
1183 goto out;
1186 if (znode->iip >= zp->child_cnt) {
1187 err = 8;
1188 goto out;
1191 if (znode->iip != n) {
1192 /* This may happen only in case of collisions */
1193 if (keys_cmp(c, &zp->zbranch[n].key,
1194 &zp->zbranch[znode->iip].key)) {
1195 err = 9;
1196 goto out;
1198 n = znode->iip;
1202 * Make sure that the first key in our znode is greater than or
1203 * equal to the key in the pointing zbranch.
1205 min = &zbr->key;
1206 cmp = keys_cmp(c, min, &znode->zbranch[0].key);
1207 if (cmp == 1) {
1208 err = 10;
1209 goto out;
1212 if (n + 1 < zp->child_cnt) {
1213 max = &zp->zbranch[n + 1].key;
1216 * Make sure the last key in our znode is less or
1217 * equivalent than the key in the zbranch which goes
1218 * after our pointing zbranch.
1220 cmp = keys_cmp(c, max,
1221 &znode->zbranch[znode->child_cnt - 1].key);
1222 if (cmp == -1) {
1223 err = 11;
1224 goto out;
1227 } else {
1228 /* This may only be root znode */
1229 if (zbr != &c->zroot) {
1230 err = 12;
1231 goto out;
1236 * Make sure that next key is greater or equivalent then the previous
1237 * one.
1239 for (n = 1; n < znode->child_cnt; n++) {
1240 cmp = keys_cmp(c, &znode->zbranch[n - 1].key,
1241 &znode->zbranch[n].key);
1242 if (cmp > 0) {
1243 err = 13;
1244 goto out;
1246 if (cmp == 0) {
1247 /* This can only be keys with colliding hash */
1248 if (!is_hash_key(c, &znode->zbranch[n].key)) {
1249 err = 14;
1250 goto out;
1253 if (znode->level != 0 || c->replaying)
1254 continue;
1257 * Colliding keys should follow binary order of
1258 * corresponding xentry/dentry names.
1260 err = dbg_check_key_order(c, &znode->zbranch[n - 1],
1261 &znode->zbranch[n]);
1262 if (err < 0)
1263 return err;
1264 if (err) {
1265 err = 15;
1266 goto out;
1271 for (n = 0; n < znode->child_cnt; n++) {
1272 if (!znode->zbranch[n].znode &&
1273 (znode->zbranch[n].lnum == 0 ||
1274 znode->zbranch[n].len == 0)) {
1275 err = 16;
1276 goto out;
1279 if (znode->zbranch[n].lnum != 0 &&
1280 znode->zbranch[n].len == 0) {
1281 err = 17;
1282 goto out;
1285 if (znode->zbranch[n].lnum == 0 &&
1286 znode->zbranch[n].len != 0) {
1287 err = 18;
1288 goto out;
1291 if (znode->zbranch[n].lnum == 0 &&
1292 znode->zbranch[n].offs != 0) {
1293 err = 19;
1294 goto out;
1297 if (znode->level != 0 && znode->zbranch[n].znode)
1298 if (znode->zbranch[n].znode->parent != znode) {
1299 err = 20;
1300 goto out;
1304 return 0;
1306 out:
1307 ubifs_err("failed, error %d", err);
1308 ubifs_msg("dump of the znode");
1309 dbg_dump_znode(c, znode);
1310 if (zp) {
1311 ubifs_msg("dump of the parent znode");
1312 dbg_dump_znode(c, zp);
1314 dump_stack();
1315 return -EINVAL;
1319 * dbg_check_tnc - check TNC tree.
1320 * @c: UBIFS file-system description object
1321 * @extra: do extra checks that are possible at start commit
1323 * This function traverses whole TNC tree and checks every znode. Returns zero
1324 * if everything is all right and %-EINVAL if something is wrong with TNC.
1326 int dbg_check_tnc(struct ubifs_info *c, int extra)
1328 struct ubifs_znode *znode;
1329 long clean_cnt = 0, dirty_cnt = 0;
1330 int err, last;
1332 if (!(ubifs_chk_flags & UBIFS_CHK_TNC))
1333 return 0;
1335 ubifs_assert(mutex_is_locked(&c->tnc_mutex));
1336 if (!c->zroot.znode)
1337 return 0;
1339 znode = ubifs_tnc_postorder_first(c->zroot.znode);
1340 while (1) {
1341 struct ubifs_znode *prev;
1342 struct ubifs_zbranch *zbr;
1344 if (!znode->parent)
1345 zbr = &c->zroot;
1346 else
1347 zbr = &znode->parent->zbranch[znode->iip];
1349 err = dbg_check_znode(c, zbr);
1350 if (err)
1351 return err;
1353 if (extra) {
1354 if (ubifs_zn_dirty(znode))
1355 dirty_cnt += 1;
1356 else
1357 clean_cnt += 1;
1360 prev = znode;
1361 znode = ubifs_tnc_postorder_next(znode);
1362 if (!znode)
1363 break;
1366 * If the last key of this znode is equivalent to the first key
1367 * of the next znode (collision), then check order of the keys.
1369 last = prev->child_cnt - 1;
1370 if (prev->level == 0 && znode->level == 0 && !c->replaying &&
1371 !keys_cmp(c, &prev->zbranch[last].key,
1372 &znode->zbranch[0].key)) {
1373 err = dbg_check_key_order(c, &prev->zbranch[last],
1374 &znode->zbranch[0]);
1375 if (err < 0)
1376 return err;
1377 if (err) {
1378 ubifs_msg("first znode");
1379 dbg_dump_znode(c, prev);
1380 ubifs_msg("second znode");
1381 dbg_dump_znode(c, znode);
1382 return -EINVAL;
1387 if (extra) {
1388 if (clean_cnt != atomic_long_read(&c->clean_zn_cnt)) {
1389 ubifs_err("incorrect clean_zn_cnt %ld, calculated %ld",
1390 atomic_long_read(&c->clean_zn_cnt),
1391 clean_cnt);
1392 return -EINVAL;
1394 if (dirty_cnt != atomic_long_read(&c->dirty_zn_cnt)) {
1395 ubifs_err("incorrect dirty_zn_cnt %ld, calculated %ld",
1396 atomic_long_read(&c->dirty_zn_cnt),
1397 dirty_cnt);
1398 return -EINVAL;
1402 return 0;
1406 * dbg_walk_index - walk the on-flash index.
1407 * @c: UBIFS file-system description object
1408 * @leaf_cb: called for each leaf node
1409 * @znode_cb: called for each indexing node
1410 * @priv: private data which is passed to callbacks
1412 * This function walks the UBIFS index and calls the @leaf_cb for each leaf
1413 * node and @znode_cb for each indexing node. Returns zero in case of success
1414 * and a negative error code in case of failure.
1416 * It would be better if this function removed every znode it pulled to into
1417 * the TNC, so that the behavior more closely matched the non-debugging
1418 * behavior.
1420 int dbg_walk_index(struct ubifs_info *c, dbg_leaf_callback leaf_cb,
1421 dbg_znode_callback znode_cb, void *priv)
1423 int err;
1424 struct ubifs_zbranch *zbr;
1425 struct ubifs_znode *znode, *child;
1427 mutex_lock(&c->tnc_mutex);
1428 /* If the root indexing node is not in TNC - pull it */
1429 if (!c->zroot.znode) {
1430 c->zroot.znode = ubifs_load_znode(c, &c->zroot, NULL, 0);
1431 if (IS_ERR(c->zroot.znode)) {
1432 err = PTR_ERR(c->zroot.znode);
1433 c->zroot.znode = NULL;
1434 goto out_unlock;
1439 * We are going to traverse the indexing tree in the postorder manner.
1440 * Go down and find the leftmost indexing node where we are going to
1441 * start from.
1443 znode = c->zroot.znode;
1444 while (znode->level > 0) {
1445 zbr = &znode->zbranch[0];
1446 child = zbr->znode;
1447 if (!child) {
1448 child = ubifs_load_znode(c, zbr, znode, 0);
1449 if (IS_ERR(child)) {
1450 err = PTR_ERR(child);
1451 goto out_unlock;
1453 zbr->znode = child;
1456 znode = child;
1459 /* Iterate over all indexing nodes */
1460 while (1) {
1461 int idx;
1463 cond_resched();
1465 if (znode_cb) {
1466 err = znode_cb(c, znode, priv);
1467 if (err) {
1468 ubifs_err("znode checking function returned "
1469 "error %d", err);
1470 dbg_dump_znode(c, znode);
1471 goto out_dump;
1474 if (leaf_cb && znode->level == 0) {
1475 for (idx = 0; idx < znode->child_cnt; idx++) {
1476 zbr = &znode->zbranch[idx];
1477 err = leaf_cb(c, zbr, priv);
1478 if (err) {
1479 ubifs_err("leaf checking function "
1480 "returned error %d, for leaf "
1481 "at LEB %d:%d",
1482 err, zbr->lnum, zbr->offs);
1483 goto out_dump;
1488 if (!znode->parent)
1489 break;
1491 idx = znode->iip + 1;
1492 znode = znode->parent;
1493 if (idx < znode->child_cnt) {
1494 /* Switch to the next index in the parent */
1495 zbr = &znode->zbranch[idx];
1496 child = zbr->znode;
1497 if (!child) {
1498 child = ubifs_load_znode(c, zbr, znode, idx);
1499 if (IS_ERR(child)) {
1500 err = PTR_ERR(child);
1501 goto out_unlock;
1503 zbr->znode = child;
1505 znode = child;
1506 } else
1508 * This is the last child, switch to the parent and
1509 * continue.
1511 continue;
1513 /* Go to the lowest leftmost znode in the new sub-tree */
1514 while (znode->level > 0) {
1515 zbr = &znode->zbranch[0];
1516 child = zbr->znode;
1517 if (!child) {
1518 child = ubifs_load_znode(c, zbr, znode, 0);
1519 if (IS_ERR(child)) {
1520 err = PTR_ERR(child);
1521 goto out_unlock;
1523 zbr->znode = child;
1525 znode = child;
1529 mutex_unlock(&c->tnc_mutex);
1530 return 0;
1532 out_dump:
1533 if (znode->parent)
1534 zbr = &znode->parent->zbranch[znode->iip];
1535 else
1536 zbr = &c->zroot;
1537 ubifs_msg("dump of znode at LEB %d:%d", zbr->lnum, zbr->offs);
1538 dbg_dump_znode(c, znode);
1539 out_unlock:
1540 mutex_unlock(&c->tnc_mutex);
1541 return err;
1545 * add_size - add znode size to partially calculated index size.
1546 * @c: UBIFS file-system description object
1547 * @znode: znode to add size for
1548 * @priv: partially calculated index size
1550 * This is a helper function for 'dbg_check_idx_size()' which is called for
1551 * every indexing node and adds its size to the 'long long' variable pointed to
1552 * by @priv.
1554 static int add_size(struct ubifs_info *c, struct ubifs_znode *znode, void *priv)
1556 long long *idx_size = priv;
1557 int add;
1559 add = ubifs_idx_node_sz(c, znode->child_cnt);
1560 add = ALIGN(add, 8);
1561 *idx_size += add;
1562 return 0;
1566 * dbg_check_idx_size - check index size.
1567 * @c: UBIFS file-system description object
1568 * @idx_size: size to check
1570 * This function walks the UBIFS index, calculates its size and checks that the
1571 * size is equivalent to @idx_size. Returns zero in case of success and a
1572 * negative error code in case of failure.
1574 int dbg_check_idx_size(struct ubifs_info *c, long long idx_size)
1576 int err;
1577 long long calc = 0;
1579 if (!(ubifs_chk_flags & UBIFS_CHK_IDX_SZ))
1580 return 0;
1582 err = dbg_walk_index(c, NULL, add_size, &calc);
1583 if (err) {
1584 ubifs_err("error %d while walking the index", err);
1585 return err;
1588 if (calc != idx_size) {
1589 ubifs_err("index size check failed: calculated size is %lld, "
1590 "should be %lld", calc, idx_size);
1591 dump_stack();
1592 return -EINVAL;
1595 return 0;
1599 * struct fsck_inode - information about an inode used when checking the file-system.
1600 * @rb: link in the RB-tree of inodes
1601 * @inum: inode number
1602 * @mode: inode type, permissions, etc
1603 * @nlink: inode link count
1604 * @xattr_cnt: count of extended attributes
1605 * @references: how many directory/xattr entries refer this inode (calculated
1606 * while walking the index)
1607 * @calc_cnt: for directory inode count of child directories
1608 * @size: inode size (read from on-flash inode)
1609 * @xattr_sz: summary size of all extended attributes (read from on-flash
1610 * inode)
1611 * @calc_sz: for directories calculated directory size
1612 * @calc_xcnt: count of extended attributes
1613 * @calc_xsz: calculated summary size of all extended attributes
1614 * @xattr_nms: sum of lengths of all extended attribute names belonging to this
1615 * inode (read from on-flash inode)
1616 * @calc_xnms: calculated sum of lengths of all extended attribute names
1618 struct fsck_inode {
1619 struct rb_node rb;
1620 ino_t inum;
1621 umode_t mode;
1622 unsigned int nlink;
1623 unsigned int xattr_cnt;
1624 int references;
1625 int calc_cnt;
1626 long long size;
1627 unsigned int xattr_sz;
1628 long long calc_sz;
1629 long long calc_xcnt;
1630 long long calc_xsz;
1631 unsigned int xattr_nms;
1632 long long calc_xnms;
1636 * struct fsck_data - private FS checking information.
1637 * @inodes: RB-tree of all inodes (contains @struct fsck_inode objects)
1639 struct fsck_data {
1640 struct rb_root inodes;
1644 * add_inode - add inode information to RB-tree of inodes.
1645 * @c: UBIFS file-system description object
1646 * @fsckd: FS checking information
1647 * @ino: raw UBIFS inode to add
1649 * This is a helper function for 'check_leaf()' which adds information about
1650 * inode @ino to the RB-tree of inodes. Returns inode information pointer in
1651 * case of success and a negative error code in case of failure.
1653 static struct fsck_inode *add_inode(struct ubifs_info *c,
1654 struct fsck_data *fsckd,
1655 struct ubifs_ino_node *ino)
1657 struct rb_node **p, *parent = NULL;
1658 struct fsck_inode *fscki;
1659 ino_t inum = key_inum_flash(c, &ino->key);
1661 p = &fsckd->inodes.rb_node;
1662 while (*p) {
1663 parent = *p;
1664 fscki = rb_entry(parent, struct fsck_inode, rb);
1665 if (inum < fscki->inum)
1666 p = &(*p)->rb_left;
1667 else if (inum > fscki->inum)
1668 p = &(*p)->rb_right;
1669 else
1670 return fscki;
1673 if (inum > c->highest_inum) {
1674 ubifs_err("too high inode number, max. is %lu",
1675 (unsigned long)c->highest_inum);
1676 return ERR_PTR(-EINVAL);
1679 fscki = kzalloc(sizeof(struct fsck_inode), GFP_NOFS);
1680 if (!fscki)
1681 return ERR_PTR(-ENOMEM);
1683 fscki->inum = inum;
1684 fscki->nlink = le32_to_cpu(ino->nlink);
1685 fscki->size = le64_to_cpu(ino->size);
1686 fscki->xattr_cnt = le32_to_cpu(ino->xattr_cnt);
1687 fscki->xattr_sz = le32_to_cpu(ino->xattr_size);
1688 fscki->xattr_nms = le32_to_cpu(ino->xattr_names);
1689 fscki->mode = le32_to_cpu(ino->mode);
1690 if (S_ISDIR(fscki->mode)) {
1691 fscki->calc_sz = UBIFS_INO_NODE_SZ;
1692 fscki->calc_cnt = 2;
1694 rb_link_node(&fscki->rb, parent, p);
1695 rb_insert_color(&fscki->rb, &fsckd->inodes);
1696 return fscki;
1700 * search_inode - search inode in the RB-tree of inodes.
1701 * @fsckd: FS checking information
1702 * @inum: inode number to search
1704 * This is a helper function for 'check_leaf()' which searches inode @inum in
1705 * the RB-tree of inodes and returns an inode information pointer or %NULL if
1706 * the inode was not found.
1708 static struct fsck_inode *search_inode(struct fsck_data *fsckd, ino_t inum)
1710 struct rb_node *p;
1711 struct fsck_inode *fscki;
1713 p = fsckd->inodes.rb_node;
1714 while (p) {
1715 fscki = rb_entry(p, struct fsck_inode, rb);
1716 if (inum < fscki->inum)
1717 p = p->rb_left;
1718 else if (inum > fscki->inum)
1719 p = p->rb_right;
1720 else
1721 return fscki;
1723 return NULL;
1727 * read_add_inode - read inode node and add it to RB-tree of inodes.
1728 * @c: UBIFS file-system description object
1729 * @fsckd: FS checking information
1730 * @inum: inode number to read
1732 * This is a helper function for 'check_leaf()' which finds inode node @inum in
1733 * the index, reads it, and adds it to the RB-tree of inodes. Returns inode
1734 * information pointer in case of success and a negative error code in case of
1735 * failure.
1737 static struct fsck_inode *read_add_inode(struct ubifs_info *c,
1738 struct fsck_data *fsckd, ino_t inum)
1740 int n, err;
1741 union ubifs_key key;
1742 struct ubifs_znode *znode;
1743 struct ubifs_zbranch *zbr;
1744 struct ubifs_ino_node *ino;
1745 struct fsck_inode *fscki;
1747 fscki = search_inode(fsckd, inum);
1748 if (fscki)
1749 return fscki;
1751 ino_key_init(c, &key, inum);
1752 err = ubifs_lookup_level0(c, &key, &znode, &n);
1753 if (!err) {
1754 ubifs_err("inode %lu not found in index", (unsigned long)inum);
1755 return ERR_PTR(-ENOENT);
1756 } else if (err < 0) {
1757 ubifs_err("error %d while looking up inode %lu",
1758 err, (unsigned long)inum);
1759 return ERR_PTR(err);
1762 zbr = &znode->zbranch[n];
1763 if (zbr->len < UBIFS_INO_NODE_SZ) {
1764 ubifs_err("bad node %lu node length %d",
1765 (unsigned long)inum, zbr->len);
1766 return ERR_PTR(-EINVAL);
1769 ino = kmalloc(zbr->len, GFP_NOFS);
1770 if (!ino)
1771 return ERR_PTR(-ENOMEM);
1773 err = ubifs_tnc_read_node(c, zbr, ino);
1774 if (err) {
1775 ubifs_err("cannot read inode node at LEB %d:%d, error %d",
1776 zbr->lnum, zbr->offs, err);
1777 kfree(ino);
1778 return ERR_PTR(err);
1781 fscki = add_inode(c, fsckd, ino);
1782 kfree(ino);
1783 if (IS_ERR(fscki)) {
1784 ubifs_err("error %ld while adding inode %lu node",
1785 PTR_ERR(fscki), (unsigned long)inum);
1786 return fscki;
1789 return fscki;
1793 * check_leaf - check leaf node.
1794 * @c: UBIFS file-system description object
1795 * @zbr: zbranch of the leaf node to check
1796 * @priv: FS checking information
1798 * This is a helper function for 'dbg_check_filesystem()' which is called for
1799 * every single leaf node while walking the indexing tree. It checks that the
1800 * leaf node referred from the indexing tree exists, has correct CRC, and does
1801 * some other basic validation. This function is also responsible for building
1802 * an RB-tree of inodes - it adds all inodes into the RB-tree. It also
1803 * calculates reference count, size, etc for each inode in order to later
1804 * compare them to the information stored inside the inodes and detect possible
1805 * inconsistencies. Returns zero in case of success and a negative error code
1806 * in case of failure.
1808 static int check_leaf(struct ubifs_info *c, struct ubifs_zbranch *zbr,
1809 void *priv)
1811 ino_t inum;
1812 void *node;
1813 struct ubifs_ch *ch;
1814 int err, type = key_type(c, &zbr->key);
1815 struct fsck_inode *fscki;
1817 if (zbr->len < UBIFS_CH_SZ) {
1818 ubifs_err("bad leaf length %d (LEB %d:%d)",
1819 zbr->len, zbr->lnum, zbr->offs);
1820 return -EINVAL;
1823 node = kmalloc(zbr->len, GFP_NOFS);
1824 if (!node)
1825 return -ENOMEM;
1827 err = ubifs_tnc_read_node(c, zbr, node);
1828 if (err) {
1829 ubifs_err("cannot read leaf node at LEB %d:%d, error %d",
1830 zbr->lnum, zbr->offs, err);
1831 goto out_free;
1834 /* If this is an inode node, add it to RB-tree of inodes */
1835 if (type == UBIFS_INO_KEY) {
1836 fscki = add_inode(c, priv, node);
1837 if (IS_ERR(fscki)) {
1838 err = PTR_ERR(fscki);
1839 ubifs_err("error %d while adding inode node", err);
1840 goto out_dump;
1842 goto out;
1845 if (type != UBIFS_DENT_KEY && type != UBIFS_XENT_KEY &&
1846 type != UBIFS_DATA_KEY) {
1847 ubifs_err("unexpected node type %d at LEB %d:%d",
1848 type, zbr->lnum, zbr->offs);
1849 err = -EINVAL;
1850 goto out_free;
1853 ch = node;
1854 if (le64_to_cpu(ch->sqnum) > c->max_sqnum) {
1855 ubifs_err("too high sequence number, max. is %llu",
1856 c->max_sqnum);
1857 err = -EINVAL;
1858 goto out_dump;
1861 if (type == UBIFS_DATA_KEY) {
1862 long long blk_offs;
1863 struct ubifs_data_node *dn = node;
1866 * Search the inode node this data node belongs to and insert
1867 * it to the RB-tree of inodes.
1869 inum = key_inum_flash(c, &dn->key);
1870 fscki = read_add_inode(c, priv, inum);
1871 if (IS_ERR(fscki)) {
1872 err = PTR_ERR(fscki);
1873 ubifs_err("error %d while processing data node and "
1874 "trying to find inode node %lu",
1875 err, (unsigned long)inum);
1876 goto out_dump;
1879 /* Make sure the data node is within inode size */
1880 blk_offs = key_block_flash(c, &dn->key);
1881 blk_offs <<= UBIFS_BLOCK_SHIFT;
1882 blk_offs += le32_to_cpu(dn->size);
1883 if (blk_offs > fscki->size) {
1884 ubifs_err("data node at LEB %d:%d is not within inode "
1885 "size %lld", zbr->lnum, zbr->offs,
1886 fscki->size);
1887 err = -EINVAL;
1888 goto out_dump;
1890 } else {
1891 int nlen;
1892 struct ubifs_dent_node *dent = node;
1893 struct fsck_inode *fscki1;
1895 err = ubifs_validate_entry(c, dent);
1896 if (err)
1897 goto out_dump;
1900 * Search the inode node this entry refers to and the parent
1901 * inode node and insert them to the RB-tree of inodes.
1903 inum = le64_to_cpu(dent->inum);
1904 fscki = read_add_inode(c, priv, inum);
1905 if (IS_ERR(fscki)) {
1906 err = PTR_ERR(fscki);
1907 ubifs_err("error %d while processing entry node and "
1908 "trying to find inode node %lu",
1909 err, (unsigned long)inum);
1910 goto out_dump;
1913 /* Count how many direntries or xentries refers this inode */
1914 fscki->references += 1;
1916 inum = key_inum_flash(c, &dent->key);
1917 fscki1 = read_add_inode(c, priv, inum);
1918 if (IS_ERR(fscki1)) {
1919 err = PTR_ERR(fscki);
1920 ubifs_err("error %d while processing entry node and "
1921 "trying to find parent inode node %lu",
1922 err, (unsigned long)inum);
1923 goto out_dump;
1926 nlen = le16_to_cpu(dent->nlen);
1927 if (type == UBIFS_XENT_KEY) {
1928 fscki1->calc_xcnt += 1;
1929 fscki1->calc_xsz += CALC_DENT_SIZE(nlen);
1930 fscki1->calc_xsz += CALC_XATTR_BYTES(fscki->size);
1931 fscki1->calc_xnms += nlen;
1932 } else {
1933 fscki1->calc_sz += CALC_DENT_SIZE(nlen);
1934 if (dent->type == UBIFS_ITYPE_DIR)
1935 fscki1->calc_cnt += 1;
1939 out:
1940 kfree(node);
1941 return 0;
1943 out_dump:
1944 ubifs_msg("dump of node at LEB %d:%d", zbr->lnum, zbr->offs);
1945 dbg_dump_node(c, node);
1946 out_free:
1947 kfree(node);
1948 return err;
1952 * free_inodes - free RB-tree of inodes.
1953 * @fsckd: FS checking information
1955 static void free_inodes(struct fsck_data *fsckd)
1957 struct rb_node *this = fsckd->inodes.rb_node;
1958 struct fsck_inode *fscki;
1960 while (this) {
1961 if (this->rb_left)
1962 this = this->rb_left;
1963 else if (this->rb_right)
1964 this = this->rb_right;
1965 else {
1966 fscki = rb_entry(this, struct fsck_inode, rb);
1967 this = rb_parent(this);
1968 if (this) {
1969 if (this->rb_left == &fscki->rb)
1970 this->rb_left = NULL;
1971 else
1972 this->rb_right = NULL;
1974 kfree(fscki);
1980 * check_inodes - checks all inodes.
1981 * @c: UBIFS file-system description object
1982 * @fsckd: FS checking information
1984 * This is a helper function for 'dbg_check_filesystem()' which walks the
1985 * RB-tree of inodes after the index scan has been finished, and checks that
1986 * inode nlink, size, etc are correct. Returns zero if inodes are fine,
1987 * %-EINVAL if not, and a negative error code in case of failure.
1989 static int check_inodes(struct ubifs_info *c, struct fsck_data *fsckd)
1991 int n, err;
1992 union ubifs_key key;
1993 struct ubifs_znode *znode;
1994 struct ubifs_zbranch *zbr;
1995 struct ubifs_ino_node *ino;
1996 struct fsck_inode *fscki;
1997 struct rb_node *this = rb_first(&fsckd->inodes);
1999 while (this) {
2000 fscki = rb_entry(this, struct fsck_inode, rb);
2001 this = rb_next(this);
2003 if (S_ISDIR(fscki->mode)) {
2005 * Directories have to have exactly one reference (they
2006 * cannot have hardlinks), although root inode is an
2007 * exception.
2009 if (fscki->inum != UBIFS_ROOT_INO &&
2010 fscki->references != 1) {
2011 ubifs_err("directory inode %lu has %d "
2012 "direntries which refer it, but "
2013 "should be 1",
2014 (unsigned long)fscki->inum,
2015 fscki->references);
2016 goto out_dump;
2018 if (fscki->inum == UBIFS_ROOT_INO &&
2019 fscki->references != 0) {
2020 ubifs_err("root inode %lu has non-zero (%d) "
2021 "direntries which refer it",
2022 (unsigned long)fscki->inum,
2023 fscki->references);
2024 goto out_dump;
2026 if (fscki->calc_sz != fscki->size) {
2027 ubifs_err("directory inode %lu size is %lld, "
2028 "but calculated size is %lld",
2029 (unsigned long)fscki->inum,
2030 fscki->size, fscki->calc_sz);
2031 goto out_dump;
2033 if (fscki->calc_cnt != fscki->nlink) {
2034 ubifs_err("directory inode %lu nlink is %d, "
2035 "but calculated nlink is %d",
2036 (unsigned long)fscki->inum,
2037 fscki->nlink, fscki->calc_cnt);
2038 goto out_dump;
2040 } else {
2041 if (fscki->references != fscki->nlink) {
2042 ubifs_err("inode %lu nlink is %d, but "
2043 "calculated nlink is %d",
2044 (unsigned long)fscki->inum,
2045 fscki->nlink, fscki->references);
2046 goto out_dump;
2049 if (fscki->xattr_sz != fscki->calc_xsz) {
2050 ubifs_err("inode %lu has xattr size %u, but "
2051 "calculated size is %lld",
2052 (unsigned long)fscki->inum, fscki->xattr_sz,
2053 fscki->calc_xsz);
2054 goto out_dump;
2056 if (fscki->xattr_cnt != fscki->calc_xcnt) {
2057 ubifs_err("inode %lu has %u xattrs, but "
2058 "calculated count is %lld",
2059 (unsigned long)fscki->inum,
2060 fscki->xattr_cnt, fscki->calc_xcnt);
2061 goto out_dump;
2063 if (fscki->xattr_nms != fscki->calc_xnms) {
2064 ubifs_err("inode %lu has xattr names' size %u, but "
2065 "calculated names' size is %lld",
2066 (unsigned long)fscki->inum, fscki->xattr_nms,
2067 fscki->calc_xnms);
2068 goto out_dump;
2072 return 0;
2074 out_dump:
2075 /* Read the bad inode and dump it */
2076 ino_key_init(c, &key, fscki->inum);
2077 err = ubifs_lookup_level0(c, &key, &znode, &n);
2078 if (!err) {
2079 ubifs_err("inode %lu not found in index",
2080 (unsigned long)fscki->inum);
2081 return -ENOENT;
2082 } else if (err < 0) {
2083 ubifs_err("error %d while looking up inode %lu",
2084 err, (unsigned long)fscki->inum);
2085 return err;
2088 zbr = &znode->zbranch[n];
2089 ino = kmalloc(zbr->len, GFP_NOFS);
2090 if (!ino)
2091 return -ENOMEM;
2093 err = ubifs_tnc_read_node(c, zbr, ino);
2094 if (err) {
2095 ubifs_err("cannot read inode node at LEB %d:%d, error %d",
2096 zbr->lnum, zbr->offs, err);
2097 kfree(ino);
2098 return err;
2101 ubifs_msg("dump of the inode %lu sitting in LEB %d:%d",
2102 (unsigned long)fscki->inum, zbr->lnum, zbr->offs);
2103 dbg_dump_node(c, ino);
2104 kfree(ino);
2105 return -EINVAL;
2109 * dbg_check_filesystem - check the file-system.
2110 * @c: UBIFS file-system description object
2112 * This function checks the file system, namely:
2113 * o makes sure that all leaf nodes exist and their CRCs are correct;
2114 * o makes sure inode nlink, size, xattr size/count are correct (for all
2115 * inodes).
2117 * The function reads whole indexing tree and all nodes, so it is pretty
2118 * heavy-weight. Returns zero if the file-system is consistent, %-EINVAL if
2119 * not, and a negative error code in case of failure.
2121 int dbg_check_filesystem(struct ubifs_info *c)
2123 int err;
2124 struct fsck_data fsckd;
2126 if (!(ubifs_chk_flags & UBIFS_CHK_FS))
2127 return 0;
2129 fsckd.inodes = RB_ROOT;
2130 err = dbg_walk_index(c, check_leaf, NULL, &fsckd);
2131 if (err)
2132 goto out_free;
2134 err = check_inodes(c, &fsckd);
2135 if (err)
2136 goto out_free;
2138 free_inodes(&fsckd);
2139 return 0;
2141 out_free:
2142 ubifs_err("file-system check failed with error %d", err);
2143 dump_stack();
2144 free_inodes(&fsckd);
2145 return err;
2148 static int invocation_cnt;
2150 int dbg_force_in_the_gaps(void)
2152 if (!dbg_force_in_the_gaps_enabled)
2153 return 0;
2154 /* Force in-the-gaps every 8th commit */
2155 return !((invocation_cnt++) & 0x7);
2158 /* Failure mode for recovery testing */
2160 #define chance(n, d) (simple_rand() <= (n) * 32768LL / (d))
2162 struct failure_mode_info {
2163 struct list_head list;
2164 struct ubifs_info *c;
2167 static LIST_HEAD(fmi_list);
2168 static DEFINE_SPINLOCK(fmi_lock);
2170 static unsigned int next;
2172 static int simple_rand(void)
2174 if (next == 0)
2175 next = current->pid;
2176 next = next * 1103515245 + 12345;
2177 return (next >> 16) & 32767;
2180 static void failure_mode_init(struct ubifs_info *c)
2182 struct failure_mode_info *fmi;
2184 fmi = kmalloc(sizeof(struct failure_mode_info), GFP_NOFS);
2185 if (!fmi) {
2186 ubifs_err("Failed to register failure mode - no memory");
2187 return;
2189 fmi->c = c;
2190 spin_lock(&fmi_lock);
2191 list_add_tail(&fmi->list, &fmi_list);
2192 spin_unlock(&fmi_lock);
2195 static void failure_mode_exit(struct ubifs_info *c)
2197 struct failure_mode_info *fmi, *tmp;
2199 spin_lock(&fmi_lock);
2200 list_for_each_entry_safe(fmi, tmp, &fmi_list, list)
2201 if (fmi->c == c) {
2202 list_del(&fmi->list);
2203 kfree(fmi);
2205 spin_unlock(&fmi_lock);
2208 static struct ubifs_info *dbg_find_info(struct ubi_volume_desc *desc)
2210 struct failure_mode_info *fmi;
2212 spin_lock(&fmi_lock);
2213 list_for_each_entry(fmi, &fmi_list, list)
2214 if (fmi->c->ubi == desc) {
2215 struct ubifs_info *c = fmi->c;
2217 spin_unlock(&fmi_lock);
2218 return c;
2220 spin_unlock(&fmi_lock);
2221 return NULL;
2224 static int in_failure_mode(struct ubi_volume_desc *desc)
2226 struct ubifs_info *c = dbg_find_info(desc);
2228 if (c && dbg_failure_mode)
2229 return c->dbg->failure_mode;
2230 return 0;
2233 static int do_fail(struct ubi_volume_desc *desc, int lnum, int write)
2235 struct ubifs_info *c = dbg_find_info(desc);
2236 struct ubifs_debug_info *d;
2238 if (!c || !dbg_failure_mode)
2239 return 0;
2240 d = c->dbg;
2241 if (d->failure_mode)
2242 return 1;
2243 if (!d->fail_cnt) {
2244 /* First call - decide delay to failure */
2245 if (chance(1, 2)) {
2246 unsigned int delay = 1 << (simple_rand() >> 11);
2248 if (chance(1, 2)) {
2249 d->fail_delay = 1;
2250 d->fail_timeout = jiffies +
2251 msecs_to_jiffies(delay);
2252 dbg_rcvry("failing after %ums", delay);
2253 } else {
2254 d->fail_delay = 2;
2255 d->fail_cnt_max = delay;
2256 dbg_rcvry("failing after %u calls", delay);
2259 d->fail_cnt += 1;
2261 /* Determine if failure delay has expired */
2262 if (d->fail_delay == 1) {
2263 if (time_before(jiffies, d->fail_timeout))
2264 return 0;
2265 } else if (d->fail_delay == 2)
2266 if (d->fail_cnt++ < d->fail_cnt_max)
2267 return 0;
2268 if (lnum == UBIFS_SB_LNUM) {
2269 if (write) {
2270 if (chance(1, 2))
2271 return 0;
2272 } else if (chance(19, 20))
2273 return 0;
2274 dbg_rcvry("failing in super block LEB %d", lnum);
2275 } else if (lnum == UBIFS_MST_LNUM || lnum == UBIFS_MST_LNUM + 1) {
2276 if (chance(19, 20))
2277 return 0;
2278 dbg_rcvry("failing in master LEB %d", lnum);
2279 } else if (lnum >= UBIFS_LOG_LNUM && lnum <= c->log_last) {
2280 if (write) {
2281 if (chance(99, 100))
2282 return 0;
2283 } else if (chance(399, 400))
2284 return 0;
2285 dbg_rcvry("failing in log LEB %d", lnum);
2286 } else if (lnum >= c->lpt_first && lnum <= c->lpt_last) {
2287 if (write) {
2288 if (chance(7, 8))
2289 return 0;
2290 } else if (chance(19, 20))
2291 return 0;
2292 dbg_rcvry("failing in LPT LEB %d", lnum);
2293 } else if (lnum >= c->orph_first && lnum <= c->orph_last) {
2294 if (write) {
2295 if (chance(1, 2))
2296 return 0;
2297 } else if (chance(9, 10))
2298 return 0;
2299 dbg_rcvry("failing in orphan LEB %d", lnum);
2300 } else if (lnum == c->ihead_lnum) {
2301 if (chance(99, 100))
2302 return 0;
2303 dbg_rcvry("failing in index head LEB %d", lnum);
2304 } else if (c->jheads && lnum == c->jheads[GCHD].wbuf.lnum) {
2305 if (chance(9, 10))
2306 return 0;
2307 dbg_rcvry("failing in GC head LEB %d", lnum);
2308 } else if (write && !RB_EMPTY_ROOT(&c->buds) &&
2309 !ubifs_search_bud(c, lnum)) {
2310 if (chance(19, 20))
2311 return 0;
2312 dbg_rcvry("failing in non-bud LEB %d", lnum);
2313 } else if (c->cmt_state == COMMIT_RUNNING_BACKGROUND ||
2314 c->cmt_state == COMMIT_RUNNING_REQUIRED) {
2315 if (chance(999, 1000))
2316 return 0;
2317 dbg_rcvry("failing in bud LEB %d commit running", lnum);
2318 } else {
2319 if (chance(9999, 10000))
2320 return 0;
2321 dbg_rcvry("failing in bud LEB %d commit not running", lnum);
2323 ubifs_err("*** SETTING FAILURE MODE ON (LEB %d) ***", lnum);
2324 d->failure_mode = 1;
2325 dump_stack();
2326 return 1;
2329 static void cut_data(const void *buf, int len)
2331 int flen, i;
2332 unsigned char *p = (void *)buf;
2334 flen = (len * (long long)simple_rand()) >> 15;
2335 for (i = flen; i < len; i++)
2336 p[i] = 0xff;
2339 int dbg_leb_read(struct ubi_volume_desc *desc, int lnum, char *buf, int offset,
2340 int len, int check)
2342 if (in_failure_mode(desc))
2343 return -EIO;
2344 return ubi_leb_read(desc, lnum, buf, offset, len, check);
2347 int dbg_leb_write(struct ubi_volume_desc *desc, int lnum, const void *buf,
2348 int offset, int len, int dtype)
2350 int err, failing;
2352 if (in_failure_mode(desc))
2353 return -EIO;
2354 failing = do_fail(desc, lnum, 1);
2355 if (failing)
2356 cut_data(buf, len);
2357 err = ubi_leb_write(desc, lnum, buf, offset, len, dtype);
2358 if (err)
2359 return err;
2360 if (failing)
2361 return -EIO;
2362 return 0;
2365 int dbg_leb_change(struct ubi_volume_desc *desc, int lnum, const void *buf,
2366 int len, int dtype)
2368 int err;
2370 if (do_fail(desc, lnum, 1))
2371 return -EIO;
2372 err = ubi_leb_change(desc, lnum, buf, len, dtype);
2373 if (err)
2374 return err;
2375 if (do_fail(desc, lnum, 1))
2376 return -EIO;
2377 return 0;
2380 int dbg_leb_erase(struct ubi_volume_desc *desc, int lnum)
2382 int err;
2384 if (do_fail(desc, lnum, 0))
2385 return -EIO;
2386 err = ubi_leb_erase(desc, lnum);
2387 if (err)
2388 return err;
2389 if (do_fail(desc, lnum, 0))
2390 return -EIO;
2391 return 0;
2394 int dbg_leb_unmap(struct ubi_volume_desc *desc, int lnum)
2396 int err;
2398 if (do_fail(desc, lnum, 0))
2399 return -EIO;
2400 err = ubi_leb_unmap(desc, lnum);
2401 if (err)
2402 return err;
2403 if (do_fail(desc, lnum, 0))
2404 return -EIO;
2405 return 0;
2408 int dbg_is_mapped(struct ubi_volume_desc *desc, int lnum)
2410 if (in_failure_mode(desc))
2411 return -EIO;
2412 return ubi_is_mapped(desc, lnum);
2415 int dbg_leb_map(struct ubi_volume_desc *desc, int lnum, int dtype)
2417 int err;
2419 if (do_fail(desc, lnum, 0))
2420 return -EIO;
2421 err = ubi_leb_map(desc, lnum, dtype);
2422 if (err)
2423 return err;
2424 if (do_fail(desc, lnum, 0))
2425 return -EIO;
2426 return 0;
2430 * ubifs_debugging_init - initialize UBIFS debugging.
2431 * @c: UBIFS file-system description object
2433 * This function initializes debugging-related data for the file system.
2434 * Returns zero in case of success and a negative error code in case of
2435 * failure.
2437 int ubifs_debugging_init(struct ubifs_info *c)
2439 c->dbg = kzalloc(sizeof(struct ubifs_debug_info), GFP_KERNEL);
2440 if (!c->dbg)
2441 return -ENOMEM;
2443 c->dbg->buf = vmalloc(c->leb_size);
2444 if (!c->dbg->buf)
2445 goto out;
2447 failure_mode_init(c);
2448 return 0;
2450 out:
2451 kfree(c->dbg);
2452 return -ENOMEM;
2456 * ubifs_debugging_exit - free debugging data.
2457 * @c: UBIFS file-system description object
2459 void ubifs_debugging_exit(struct ubifs_info *c)
2461 failure_mode_exit(c);
2462 vfree(c->dbg->buf);
2463 kfree(c->dbg);
2467 * Root directory for UBIFS stuff in debugfs. Contains sub-directories which
2468 * contain the stuff specific to particular file-system mounts.
2470 static struct dentry *dfs_rootdir;
2473 * dbg_debugfs_init - initialize debugfs file-system.
2475 * UBIFS uses debugfs file-system to expose various debugging knobs to
2476 * user-space. This function creates "ubifs" directory in the debugfs
2477 * file-system. Returns zero in case of success and a negative error code in
2478 * case of failure.
2480 int dbg_debugfs_init(void)
2482 dfs_rootdir = debugfs_create_dir("ubifs", NULL);
2483 if (IS_ERR(dfs_rootdir)) {
2484 int err = PTR_ERR(dfs_rootdir);
2485 ubifs_err("cannot create \"ubifs\" debugfs directory, "
2486 "error %d\n", err);
2487 return err;
2490 return 0;
2494 * dbg_debugfs_exit - remove the "ubifs" directory from debugfs file-system.
2496 void dbg_debugfs_exit(void)
2498 debugfs_remove(dfs_rootdir);
2501 static int open_debugfs_file(struct inode *inode, struct file *file)
2503 file->private_data = inode->i_private;
2504 return 0;
2507 static ssize_t write_debugfs_file(struct file *file, const char __user *buf,
2508 size_t count, loff_t *ppos)
2510 struct ubifs_info *c = file->private_data;
2511 struct ubifs_debug_info *d = c->dbg;
2513 if (file->f_path.dentry == d->dfs_dump_lprops)
2514 dbg_dump_lprops(c);
2515 else if (file->f_path.dentry == d->dfs_dump_budg) {
2516 spin_lock(&c->space_lock);
2517 dbg_dump_budg(c);
2518 spin_unlock(&c->space_lock);
2519 } else if (file->f_path.dentry == d->dfs_dump_tnc) {
2520 mutex_lock(&c->tnc_mutex);
2521 dbg_dump_tnc(c);
2522 mutex_unlock(&c->tnc_mutex);
2523 } else
2524 return -EINVAL;
2526 *ppos += count;
2527 return count;
2530 static const struct file_operations dfs_fops = {
2531 .open = open_debugfs_file,
2532 .write = write_debugfs_file,
2533 .owner = THIS_MODULE,
2537 * dbg_debugfs_init_fs - initialize debugfs for UBIFS instance.
2538 * @c: UBIFS file-system description object
2540 * This function creates all debugfs files for this instance of UBIFS. Returns
2541 * zero in case of success and a negative error code in case of failure.
2543 * Note, the only reason we have not merged this function with the
2544 * 'ubifs_debugging_init()' function is because it is better to initialize
2545 * debugfs interfaces at the very end of the mount process, and remove them at
2546 * the very beginning of the mount process.
2548 int dbg_debugfs_init_fs(struct ubifs_info *c)
2550 int err;
2551 const char *fname;
2552 struct dentry *dent;
2553 struct ubifs_debug_info *d = c->dbg;
2555 sprintf(d->dfs_dir_name, "ubi%d_%d", c->vi.ubi_num, c->vi.vol_id);
2556 d->dfs_dir = debugfs_create_dir(d->dfs_dir_name, dfs_rootdir);
2557 if (IS_ERR(d->dfs_dir)) {
2558 err = PTR_ERR(d->dfs_dir);
2559 ubifs_err("cannot create \"%s\" debugfs directory, error %d\n",
2560 d->dfs_dir_name, err);
2561 goto out;
2564 fname = "dump_lprops";
2565 dent = debugfs_create_file(fname, S_IWUGO, d->dfs_dir, c, &dfs_fops);
2566 if (IS_ERR(dent))
2567 goto out_remove;
2568 d->dfs_dump_lprops = dent;
2570 fname = "dump_budg";
2571 dent = debugfs_create_file(fname, S_IWUGO, d->dfs_dir, c, &dfs_fops);
2572 if (IS_ERR(dent))
2573 goto out_remove;
2574 d->dfs_dump_budg = dent;
2576 fname = "dump_tnc";
2577 dent = debugfs_create_file(fname, S_IWUGO, d->dfs_dir, c, &dfs_fops);
2578 if (IS_ERR(dent))
2579 goto out_remove;
2580 d->dfs_dump_tnc = dent;
2582 return 0;
2584 out_remove:
2585 err = PTR_ERR(dent);
2586 ubifs_err("cannot create \"%s\" debugfs directory, error %d\n",
2587 fname, err);
2588 debugfs_remove_recursive(d->dfs_dir);
2589 out:
2590 return err;
2594 * dbg_debugfs_exit_fs - remove all debugfs files.
2595 * @c: UBIFS file-system description object
2597 void dbg_debugfs_exit_fs(struct ubifs_info *c)
2599 debugfs_remove_recursive(c->dbg->dfs_dir);
2602 #endif /* CONFIG_UBIFS_FS_DEBUG */