blob: 6ae9fdcd20203139572e3608e8593cd3242bdc05 [file] [log] [blame]
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001/*
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/*
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.
28 */
29
Artem Bityutskiy1e517642008-07-14 19:08:37 +030030#include <linux/module.h>
Artem Bityutskiy552ff312008-10-23 11:49:28 +030031#include <linux/debugfs.h>
Artem Bityutskiy4d61db42008-12-18 14:06:51 +020032#include <linux/math64.h>
Artem Bityutskiy81e79d32011-05-31 18:16:34 +030033#include <linux/uaccess.h>
Artem Bityutskiya7fa94a2011-06-03 16:20:03 +030034#include <linux/random.h>
35#include "ubifs.h"
Artem Bityutskiy1e517642008-07-14 19:08:37 +030036
37#ifdef CONFIG_UBIFS_FS_DEBUG
38
39DEFINE_SPINLOCK(dbg_lock);
40
41static char dbg_key_buf0[128];
42static char dbg_key_buf1[128];
43
Artem Bityutskiy1e517642008-07-14 19:08:37 +030044static const char *get_key_fmt(int fmt)
45{
46 switch (fmt) {
47 case UBIFS_SIMPLE_KEY_FMT:
48 return "simple";
49 default:
50 return "unknown/invalid format";
51 }
52}
53
54static const char *get_key_hash(int hash)
55{
56 switch (hash) {
57 case UBIFS_KEY_HASH_R5:
58 return "R5";
59 case UBIFS_KEY_HASH_TEST:
60 return "test";
61 default:
62 return "unknown/invalid name hash";
63 }
64}
65
66static const char *get_key_type(int type)
67{
68 switch (type) {
69 case UBIFS_INO_KEY:
70 return "inode";
71 case UBIFS_DENT_KEY:
72 return "direntry";
73 case UBIFS_XENT_KEY:
74 return "xentry";
75 case UBIFS_DATA_KEY:
76 return "data";
77 case UBIFS_TRUN_KEY:
78 return "truncate";
79 default:
80 return "unknown/invalid key";
81 }
82}
83
Artem Bityutskiy4315fb42011-05-25 17:32:42 +030084static const char *get_dent_type(int type)
85{
86 switch (type) {
87 case UBIFS_ITYPE_REG:
88 return "file";
89 case UBIFS_ITYPE_DIR:
90 return "dir";
91 case UBIFS_ITYPE_LNK:
92 return "symlink";
93 case UBIFS_ITYPE_BLK:
94 return "blkdev";
95 case UBIFS_ITYPE_CHR:
96 return "char dev";
97 case UBIFS_ITYPE_FIFO:
98 return "fifo";
99 case UBIFS_ITYPE_SOCK:
100 return "socket";
101 default:
102 return "unknown/invalid type";
103 }
104}
105
Artem Bityutskiybeba0062012-01-11 15:52:09 +0200106static void snprintf_key(const struct ubifs_info *c, const union ubifs_key *key,
107 char *buffer, int len)
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300108{
109 char *p = buffer;
110 int type = key_type(c, key);
111
112 if (c->key_fmt == UBIFS_SIMPLE_KEY_FMT) {
113 switch (type) {
114 case UBIFS_INO_KEY:
Artem Bityutskiybeba0062012-01-11 15:52:09 +0200115 len -= snprintf(p, len, "(%lu, %s)",
116 (unsigned long)key_inum(c, key),
117 get_key_type(type));
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300118 break;
119 case UBIFS_DENT_KEY:
120 case UBIFS_XENT_KEY:
Artem Bityutskiybeba0062012-01-11 15:52:09 +0200121 len -= snprintf(p, len, "(%lu, %s, %#08x)",
122 (unsigned long)key_inum(c, key),
123 get_key_type(type), key_hash(c, key));
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300124 break;
125 case UBIFS_DATA_KEY:
Artem Bityutskiybeba0062012-01-11 15:52:09 +0200126 len -= snprintf(p, len, "(%lu, %s, %u)",
127 (unsigned long)key_inum(c, key),
128 get_key_type(type), key_block(c, key));
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300129 break;
130 case UBIFS_TRUN_KEY:
Artem Bityutskiybeba0062012-01-11 15:52:09 +0200131 len -= snprintf(p, len, "(%lu, %s)",
132 (unsigned long)key_inum(c, key),
133 get_key_type(type));
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300134 break;
135 default:
Artem Bityutskiybeba0062012-01-11 15:52:09 +0200136 len -= snprintf(p, len, "(bad key type: %#08x, %#08x)",
137 key->u32[0], key->u32[1]);
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300138 }
139 } else
Artem Bityutskiybeba0062012-01-11 15:52:09 +0200140 len -= snprintf(p, len, "bad key format %d", c->key_fmt);
141 ubifs_assert(len > 0);
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300142}
143
144const char *dbg_key_str0(const struct ubifs_info *c, const union ubifs_key *key)
145{
146 /* dbg_lock must be held */
Artem Bityutskiybeba0062012-01-11 15:52:09 +0200147 snprintf_key(c, key, dbg_key_buf0, sizeof(dbg_key_buf0) - 1);
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300148 return dbg_key_buf0;
149}
150
151const char *dbg_key_str1(const struct ubifs_info *c, const union ubifs_key *key)
152{
153 /* dbg_lock must be held */
Artem Bityutskiybeba0062012-01-11 15:52:09 +0200154 snprintf_key(c, key, dbg_key_buf1, sizeof(dbg_key_buf1) - 1);
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300155 return dbg_key_buf1;
156}
157
158const char *dbg_ntype(int type)
159{
160 switch (type) {
161 case UBIFS_PAD_NODE:
162 return "padding node";
163 case UBIFS_SB_NODE:
164 return "superblock node";
165 case UBIFS_MST_NODE:
166 return "master node";
167 case UBIFS_REF_NODE:
168 return "reference node";
169 case UBIFS_INO_NODE:
170 return "inode node";
171 case UBIFS_DENT_NODE:
172 return "direntry node";
173 case UBIFS_XENT_NODE:
174 return "xentry node";
175 case UBIFS_DATA_NODE:
176 return "data node";
177 case UBIFS_TRUN_NODE:
178 return "truncate node";
179 case UBIFS_IDX_NODE:
180 return "indexing node";
181 case UBIFS_CS_NODE:
182 return "commit start node";
183 case UBIFS_ORPH_NODE:
184 return "orphan node";
185 default:
186 return "unknown node";
187 }
188}
189
190static const char *dbg_gtype(int type)
191{
192 switch (type) {
193 case UBIFS_NO_NODE_GROUP:
194 return "no node group";
195 case UBIFS_IN_NODE_GROUP:
196 return "in node group";
197 case UBIFS_LAST_OF_NODE_GROUP:
198 return "last of node group";
199 default:
200 return "unknown";
201 }
202}
203
204const char *dbg_cstate(int cmt_state)
205{
206 switch (cmt_state) {
207 case COMMIT_RESTING:
208 return "commit resting";
209 case COMMIT_BACKGROUND:
210 return "background commit requested";
211 case COMMIT_REQUIRED:
212 return "commit required";
213 case COMMIT_RUNNING_BACKGROUND:
214 return "BACKGROUND commit running";
215 case COMMIT_RUNNING_REQUIRED:
216 return "commit running and required";
217 case COMMIT_BROKEN:
218 return "broken commit";
219 default:
220 return "unknown commit state";
221 }
222}
223
Artem Bityutskiy77a7ae52009-09-15 15:03:51 +0300224const char *dbg_jhead(int jhead)
225{
226 switch (jhead) {
227 case GCHD:
228 return "0 (GC)";
229 case BASEHD:
230 return "1 (base)";
231 case DATAHD:
232 return "2 (data)";
233 default:
234 return "unknown journal head";
235 }
236}
237
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300238static void dump_ch(const struct ubifs_ch *ch)
239{
240 printk(KERN_DEBUG "\tmagic %#x\n", le32_to_cpu(ch->magic));
241 printk(KERN_DEBUG "\tcrc %#x\n", le32_to_cpu(ch->crc));
242 printk(KERN_DEBUG "\tnode_type %d (%s)\n", ch->node_type,
243 dbg_ntype(ch->node_type));
244 printk(KERN_DEBUG "\tgroup_type %d (%s)\n", ch->group_type,
245 dbg_gtype(ch->group_type));
246 printk(KERN_DEBUG "\tsqnum %llu\n",
247 (unsigned long long)le64_to_cpu(ch->sqnum));
248 printk(KERN_DEBUG "\tlen %u\n", le32_to_cpu(ch->len));
249}
250
Artem Bityutskiy4315fb42011-05-25 17:32:42 +0300251void dbg_dump_inode(struct ubifs_info *c, const struct inode *inode)
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300252{
253 const struct ubifs_inode *ui = ubifs_inode(inode);
Artem Bityutskiy4315fb42011-05-25 17:32:42 +0300254 struct qstr nm = { .name = NULL };
255 union ubifs_key key;
256 struct ubifs_dent_node *dent, *pdent = NULL;
257 int count = 2;
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300258
Artem Bityutskiyb5e426e2008-09-09 11:20:35 +0300259 printk(KERN_DEBUG "Dump in-memory inode:");
260 printk(KERN_DEBUG "\tinode %lu\n", inode->i_ino);
261 printk(KERN_DEBUG "\tsize %llu\n",
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300262 (unsigned long long)i_size_read(inode));
Artem Bityutskiyb5e426e2008-09-09 11:20:35 +0300263 printk(KERN_DEBUG "\tnlink %u\n", inode->i_nlink);
264 printk(KERN_DEBUG "\tuid %u\n", (unsigned int)inode->i_uid);
265 printk(KERN_DEBUG "\tgid %u\n", (unsigned int)inode->i_gid);
266 printk(KERN_DEBUG "\tatime %u.%u\n",
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300267 (unsigned int)inode->i_atime.tv_sec,
268 (unsigned int)inode->i_atime.tv_nsec);
Artem Bityutskiyb5e426e2008-09-09 11:20:35 +0300269 printk(KERN_DEBUG "\tmtime %u.%u\n",
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300270 (unsigned int)inode->i_mtime.tv_sec,
271 (unsigned int)inode->i_mtime.tv_nsec);
Artem Bityutskiyb5e426e2008-09-09 11:20:35 +0300272 printk(KERN_DEBUG "\tctime %u.%u\n",
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300273 (unsigned int)inode->i_ctime.tv_sec,
274 (unsigned int)inode->i_ctime.tv_nsec);
Artem Bityutskiyb5e426e2008-09-09 11:20:35 +0300275 printk(KERN_DEBUG "\tcreat_sqnum %llu\n", ui->creat_sqnum);
276 printk(KERN_DEBUG "\txattr_size %u\n", ui->xattr_size);
277 printk(KERN_DEBUG "\txattr_cnt %u\n", ui->xattr_cnt);
278 printk(KERN_DEBUG "\txattr_names %u\n", ui->xattr_names);
279 printk(KERN_DEBUG "\tdirty %u\n", ui->dirty);
280 printk(KERN_DEBUG "\txattr %u\n", ui->xattr);
281 printk(KERN_DEBUG "\tbulk_read %u\n", ui->xattr);
282 printk(KERN_DEBUG "\tsynced_i_size %llu\n",
283 (unsigned long long)ui->synced_i_size);
284 printk(KERN_DEBUG "\tui_size %llu\n",
285 (unsigned long long)ui->ui_size);
286 printk(KERN_DEBUG "\tflags %d\n", ui->flags);
287 printk(KERN_DEBUG "\tcompr_type %d\n", ui->compr_type);
288 printk(KERN_DEBUG "\tlast_page_read %lu\n", ui->last_page_read);
289 printk(KERN_DEBUG "\tread_in_a_row %lu\n", ui->read_in_a_row);
290 printk(KERN_DEBUG "\tdata_len %d\n", ui->data_len);
Artem Bityutskiy4315fb42011-05-25 17:32:42 +0300291
292 if (!S_ISDIR(inode->i_mode))
293 return;
294
295 printk(KERN_DEBUG "List of directory entries:\n");
296 ubifs_assert(!mutex_is_locked(&c->tnc_mutex));
297
298 lowest_dent_key(c, &key, inode->i_ino);
299 while (1) {
300 dent = ubifs_tnc_next_ent(c, &key, &nm);
301 if (IS_ERR(dent)) {
302 if (PTR_ERR(dent) != -ENOENT)
303 printk(KERN_DEBUG "error %ld\n", PTR_ERR(dent));
304 break;
305 }
306
307 printk(KERN_DEBUG "\t%d: %s (%s)\n",
308 count++, dent->name, get_dent_type(dent->type));
309
310 nm.name = dent->name;
311 nm.len = le16_to_cpu(dent->nlen);
312 kfree(pdent);
313 pdent = dent;
314 key_read(c, &dent->key, &key);
315 }
316 kfree(pdent);
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300317}
318
319void dbg_dump_node(const struct ubifs_info *c, const void *node)
320{
321 int i, n;
322 union ubifs_key key;
323 const struct ubifs_ch *ch = node;
324
Artem Bityutskiy2b1844a2011-06-03 08:31:29 +0300325 if (dbg_is_tst_rcvry(c))
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300326 return;
327
328 /* If the magic is incorrect, just hexdump the first bytes */
329 if (le32_to_cpu(ch->magic) != UBIFS_NODE_MAGIC) {
330 printk(KERN_DEBUG "Not a node, first %zu bytes:", UBIFS_CH_SZ);
331 print_hex_dump(KERN_DEBUG, "", DUMP_PREFIX_OFFSET, 32, 1,
332 (void *)node, UBIFS_CH_SZ, 1);
333 return;
334 }
335
336 spin_lock(&dbg_lock);
337 dump_ch(node);
338
339 switch (ch->node_type) {
340 case UBIFS_PAD_NODE:
341 {
342 const struct ubifs_pad_node *pad = node;
343
344 printk(KERN_DEBUG "\tpad_len %u\n",
345 le32_to_cpu(pad->pad_len));
346 break;
347 }
348 case UBIFS_SB_NODE:
349 {
350 const struct ubifs_sb_node *sup = node;
351 unsigned int sup_flags = le32_to_cpu(sup->flags);
352
353 printk(KERN_DEBUG "\tkey_hash %d (%s)\n",
354 (int)sup->key_hash, get_key_hash(sup->key_hash));
355 printk(KERN_DEBUG "\tkey_fmt %d (%s)\n",
356 (int)sup->key_fmt, get_key_fmt(sup->key_fmt));
357 printk(KERN_DEBUG "\tflags %#x\n", sup_flags);
358 printk(KERN_DEBUG "\t big_lpt %u\n",
359 !!(sup_flags & UBIFS_FLG_BIGLPT));
Matthew L. Creech9f58d352011-05-05 16:33:20 -0400360 printk(KERN_DEBUG "\t space_fixup %u\n",
361 !!(sup_flags & UBIFS_FLG_SPACE_FIXUP));
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300362 printk(KERN_DEBUG "\tmin_io_size %u\n",
363 le32_to_cpu(sup->min_io_size));
364 printk(KERN_DEBUG "\tleb_size %u\n",
365 le32_to_cpu(sup->leb_size));
366 printk(KERN_DEBUG "\tleb_cnt %u\n",
367 le32_to_cpu(sup->leb_cnt));
368 printk(KERN_DEBUG "\tmax_leb_cnt %u\n",
369 le32_to_cpu(sup->max_leb_cnt));
370 printk(KERN_DEBUG "\tmax_bud_bytes %llu\n",
371 (unsigned long long)le64_to_cpu(sup->max_bud_bytes));
372 printk(KERN_DEBUG "\tlog_lebs %u\n",
373 le32_to_cpu(sup->log_lebs));
374 printk(KERN_DEBUG "\tlpt_lebs %u\n",
375 le32_to_cpu(sup->lpt_lebs));
376 printk(KERN_DEBUG "\torph_lebs %u\n",
377 le32_to_cpu(sup->orph_lebs));
378 printk(KERN_DEBUG "\tjhead_cnt %u\n",
379 le32_to_cpu(sup->jhead_cnt));
380 printk(KERN_DEBUG "\tfanout %u\n",
381 le32_to_cpu(sup->fanout));
382 printk(KERN_DEBUG "\tlsave_cnt %u\n",
383 le32_to_cpu(sup->lsave_cnt));
384 printk(KERN_DEBUG "\tdefault_compr %u\n",
385 (int)le16_to_cpu(sup->default_compr));
386 printk(KERN_DEBUG "\trp_size %llu\n",
387 (unsigned long long)le64_to_cpu(sup->rp_size));
388 printk(KERN_DEBUG "\trp_uid %u\n",
389 le32_to_cpu(sup->rp_uid));
390 printk(KERN_DEBUG "\trp_gid %u\n",
391 le32_to_cpu(sup->rp_gid));
392 printk(KERN_DEBUG "\tfmt_version %u\n",
393 le32_to_cpu(sup->fmt_version));
394 printk(KERN_DEBUG "\ttime_gran %u\n",
395 le32_to_cpu(sup->time_gran));
Joe Perches7f2f4e72009-12-14 18:01:13 -0800396 printk(KERN_DEBUG "\tUUID %pUB\n",
397 sup->uuid);
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300398 break;
399 }
400 case UBIFS_MST_NODE:
401 {
402 const struct ubifs_mst_node *mst = node;
403
404 printk(KERN_DEBUG "\thighest_inum %llu\n",
405 (unsigned long long)le64_to_cpu(mst->highest_inum));
406 printk(KERN_DEBUG "\tcommit number %llu\n",
407 (unsigned long long)le64_to_cpu(mst->cmt_no));
408 printk(KERN_DEBUG "\tflags %#x\n",
409 le32_to_cpu(mst->flags));
410 printk(KERN_DEBUG "\tlog_lnum %u\n",
411 le32_to_cpu(mst->log_lnum));
412 printk(KERN_DEBUG "\troot_lnum %u\n",
413 le32_to_cpu(mst->root_lnum));
414 printk(KERN_DEBUG "\troot_offs %u\n",
415 le32_to_cpu(mst->root_offs));
416 printk(KERN_DEBUG "\troot_len %u\n",
417 le32_to_cpu(mst->root_len));
418 printk(KERN_DEBUG "\tgc_lnum %u\n",
419 le32_to_cpu(mst->gc_lnum));
420 printk(KERN_DEBUG "\tihead_lnum %u\n",
421 le32_to_cpu(mst->ihead_lnum));
422 printk(KERN_DEBUG "\tihead_offs %u\n",
423 le32_to_cpu(mst->ihead_offs));
Harvey Harrison0ecb9522008-10-24 10:52:57 -0700424 printk(KERN_DEBUG "\tindex_size %llu\n",
425 (unsigned long long)le64_to_cpu(mst->index_size));
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300426 printk(KERN_DEBUG "\tlpt_lnum %u\n",
427 le32_to_cpu(mst->lpt_lnum));
428 printk(KERN_DEBUG "\tlpt_offs %u\n",
429 le32_to_cpu(mst->lpt_offs));
430 printk(KERN_DEBUG "\tnhead_lnum %u\n",
431 le32_to_cpu(mst->nhead_lnum));
432 printk(KERN_DEBUG "\tnhead_offs %u\n",
433 le32_to_cpu(mst->nhead_offs));
434 printk(KERN_DEBUG "\tltab_lnum %u\n",
435 le32_to_cpu(mst->ltab_lnum));
436 printk(KERN_DEBUG "\tltab_offs %u\n",
437 le32_to_cpu(mst->ltab_offs));
438 printk(KERN_DEBUG "\tlsave_lnum %u\n",
439 le32_to_cpu(mst->lsave_lnum));
440 printk(KERN_DEBUG "\tlsave_offs %u\n",
441 le32_to_cpu(mst->lsave_offs));
442 printk(KERN_DEBUG "\tlscan_lnum %u\n",
443 le32_to_cpu(mst->lscan_lnum));
444 printk(KERN_DEBUG "\tleb_cnt %u\n",
445 le32_to_cpu(mst->leb_cnt));
446 printk(KERN_DEBUG "\tempty_lebs %u\n",
447 le32_to_cpu(mst->empty_lebs));
448 printk(KERN_DEBUG "\tidx_lebs %u\n",
449 le32_to_cpu(mst->idx_lebs));
450 printk(KERN_DEBUG "\ttotal_free %llu\n",
451 (unsigned long long)le64_to_cpu(mst->total_free));
452 printk(KERN_DEBUG "\ttotal_dirty %llu\n",
453 (unsigned long long)le64_to_cpu(mst->total_dirty));
454 printk(KERN_DEBUG "\ttotal_used %llu\n",
455 (unsigned long long)le64_to_cpu(mst->total_used));
456 printk(KERN_DEBUG "\ttotal_dead %llu\n",
457 (unsigned long long)le64_to_cpu(mst->total_dead));
458 printk(KERN_DEBUG "\ttotal_dark %llu\n",
459 (unsigned long long)le64_to_cpu(mst->total_dark));
460 break;
461 }
462 case UBIFS_REF_NODE:
463 {
464 const struct ubifs_ref_node *ref = node;
465
466 printk(KERN_DEBUG "\tlnum %u\n",
467 le32_to_cpu(ref->lnum));
468 printk(KERN_DEBUG "\toffs %u\n",
469 le32_to_cpu(ref->offs));
470 printk(KERN_DEBUG "\tjhead %u\n",
471 le32_to_cpu(ref->jhead));
472 break;
473 }
474 case UBIFS_INO_NODE:
475 {
476 const struct ubifs_ino_node *ino = node;
477
478 key_read(c, &ino->key, &key);
479 printk(KERN_DEBUG "\tkey %s\n", DBGKEY(&key));
480 printk(KERN_DEBUG "\tcreat_sqnum %llu\n",
481 (unsigned long long)le64_to_cpu(ino->creat_sqnum));
482 printk(KERN_DEBUG "\tsize %llu\n",
483 (unsigned long long)le64_to_cpu(ino->size));
484 printk(KERN_DEBUG "\tnlink %u\n",
485 le32_to_cpu(ino->nlink));
486 printk(KERN_DEBUG "\tatime %lld.%u\n",
487 (long long)le64_to_cpu(ino->atime_sec),
488 le32_to_cpu(ino->atime_nsec));
489 printk(KERN_DEBUG "\tmtime %lld.%u\n",
490 (long long)le64_to_cpu(ino->mtime_sec),
491 le32_to_cpu(ino->mtime_nsec));
492 printk(KERN_DEBUG "\tctime %lld.%u\n",
493 (long long)le64_to_cpu(ino->ctime_sec),
494 le32_to_cpu(ino->ctime_nsec));
495 printk(KERN_DEBUG "\tuid %u\n",
496 le32_to_cpu(ino->uid));
497 printk(KERN_DEBUG "\tgid %u\n",
498 le32_to_cpu(ino->gid));
499 printk(KERN_DEBUG "\tmode %u\n",
500 le32_to_cpu(ino->mode));
501 printk(KERN_DEBUG "\tflags %#x\n",
502 le32_to_cpu(ino->flags));
503 printk(KERN_DEBUG "\txattr_cnt %u\n",
504 le32_to_cpu(ino->xattr_cnt));
505 printk(KERN_DEBUG "\txattr_size %u\n",
506 le32_to_cpu(ino->xattr_size));
507 printk(KERN_DEBUG "\txattr_names %u\n",
508 le32_to_cpu(ino->xattr_names));
509 printk(KERN_DEBUG "\tcompr_type %#x\n",
510 (int)le16_to_cpu(ino->compr_type));
511 printk(KERN_DEBUG "\tdata len %u\n",
512 le32_to_cpu(ino->data_len));
513 break;
514 }
515 case UBIFS_DENT_NODE:
516 case UBIFS_XENT_NODE:
517 {
518 const struct ubifs_dent_node *dent = node;
519 int nlen = le16_to_cpu(dent->nlen);
520
521 key_read(c, &dent->key, &key);
522 printk(KERN_DEBUG "\tkey %s\n", DBGKEY(&key));
523 printk(KERN_DEBUG "\tinum %llu\n",
524 (unsigned long long)le64_to_cpu(dent->inum));
525 printk(KERN_DEBUG "\ttype %d\n", (int)dent->type);
526 printk(KERN_DEBUG "\tnlen %d\n", nlen);
527 printk(KERN_DEBUG "\tname ");
528
529 if (nlen > UBIFS_MAX_NLEN)
530 printk(KERN_DEBUG "(bad name length, not printing, "
531 "bad or corrupted node)");
532 else {
533 for (i = 0; i < nlen && dent->name[i]; i++)
Artem Bityutskiyc9927c32009-03-16 09:42:03 +0200534 printk(KERN_CONT "%c", dent->name[i]);
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300535 }
Artem Bityutskiyc9927c32009-03-16 09:42:03 +0200536 printk(KERN_CONT "\n");
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300537
538 break;
539 }
540 case UBIFS_DATA_NODE:
541 {
542 const struct ubifs_data_node *dn = node;
543 int dlen = le32_to_cpu(ch->len) - UBIFS_DATA_NODE_SZ;
544
545 key_read(c, &dn->key, &key);
546 printk(KERN_DEBUG "\tkey %s\n", DBGKEY(&key));
547 printk(KERN_DEBUG "\tsize %u\n",
548 le32_to_cpu(dn->size));
549 printk(KERN_DEBUG "\tcompr_typ %d\n",
550 (int)le16_to_cpu(dn->compr_type));
551 printk(KERN_DEBUG "\tdata size %d\n",
552 dlen);
553 printk(KERN_DEBUG "\tdata:\n");
554 print_hex_dump(KERN_DEBUG, "\t", DUMP_PREFIX_OFFSET, 32, 1,
555 (void *)&dn->data, dlen, 0);
556 break;
557 }
558 case UBIFS_TRUN_NODE:
559 {
560 const struct ubifs_trun_node *trun = node;
561
562 printk(KERN_DEBUG "\tinum %u\n",
563 le32_to_cpu(trun->inum));
564 printk(KERN_DEBUG "\told_size %llu\n",
565 (unsigned long long)le64_to_cpu(trun->old_size));
566 printk(KERN_DEBUG "\tnew_size %llu\n",
567 (unsigned long long)le64_to_cpu(trun->new_size));
568 break;
569 }
570 case UBIFS_IDX_NODE:
571 {
572 const struct ubifs_idx_node *idx = node;
573
574 n = le16_to_cpu(idx->child_cnt);
575 printk(KERN_DEBUG "\tchild_cnt %d\n", n);
576 printk(KERN_DEBUG "\tlevel %d\n",
577 (int)le16_to_cpu(idx->level));
578 printk(KERN_DEBUG "\tBranches:\n");
579
580 for (i = 0; i < n && i < c->fanout - 1; i++) {
581 const struct ubifs_branch *br;
582
583 br = ubifs_idx_branch(c, idx, i);
584 key_read(c, &br->key, &key);
585 printk(KERN_DEBUG "\t%d: LEB %d:%d len %d key %s\n",
586 i, le32_to_cpu(br->lnum), le32_to_cpu(br->offs),
587 le32_to_cpu(br->len), DBGKEY(&key));
588 }
589 break;
590 }
591 case UBIFS_CS_NODE:
592 break;
593 case UBIFS_ORPH_NODE:
594 {
595 const struct ubifs_orph_node *orph = node;
596
597 printk(KERN_DEBUG "\tcommit number %llu\n",
598 (unsigned long long)
599 le64_to_cpu(orph->cmt_no) & LLONG_MAX);
600 printk(KERN_DEBUG "\tlast node flag %llu\n",
601 (unsigned long long)(le64_to_cpu(orph->cmt_no)) >> 63);
602 n = (le32_to_cpu(ch->len) - UBIFS_ORPH_NODE_SZ) >> 3;
603 printk(KERN_DEBUG "\t%d orphan inode numbers:\n", n);
604 for (i = 0; i < n; i++)
605 printk(KERN_DEBUG "\t ino %llu\n",
Alexander Beregalov7424bac2008-09-17 22:09:41 +0400606 (unsigned long long)le64_to_cpu(orph->inos[i]));
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300607 break;
608 }
609 default:
610 printk(KERN_DEBUG "node type %d was not recognized\n",
611 (int)ch->node_type);
612 }
613 spin_unlock(&dbg_lock);
614}
615
616void dbg_dump_budget_req(const struct ubifs_budget_req *req)
617{
618 spin_lock(&dbg_lock);
619 printk(KERN_DEBUG "Budgeting request: new_ino %d, dirtied_ino %d\n",
620 req->new_ino, req->dirtied_ino);
621 printk(KERN_DEBUG "\tnew_ino_d %d, dirtied_ino_d %d\n",
622 req->new_ino_d, req->dirtied_ino_d);
623 printk(KERN_DEBUG "\tnew_page %d, dirtied_page %d\n",
624 req->new_page, req->dirtied_page);
625 printk(KERN_DEBUG "\tnew_dent %d, mod_dent %d\n",
626 req->new_dent, req->mod_dent);
627 printk(KERN_DEBUG "\tidx_growth %d\n", req->idx_growth);
628 printk(KERN_DEBUG "\tdata_growth %d dd_growth %d\n",
629 req->data_growth, req->dd_growth);
630 spin_unlock(&dbg_lock);
631}
632
633void dbg_dump_lstats(const struct ubifs_lp_stats *lst)
634{
635 spin_lock(&dbg_lock);
Artem Bityutskiy1de94152008-07-25 12:58:38 +0300636 printk(KERN_DEBUG "(pid %d) Lprops statistics: empty_lebs %d, "
637 "idx_lebs %d\n", current->pid, lst->empty_lebs, lst->idx_lebs);
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300638 printk(KERN_DEBUG "\ttaken_empty_lebs %d, total_free %lld, "
639 "total_dirty %lld\n", lst->taken_empty_lebs, lst->total_free,
640 lst->total_dirty);
641 printk(KERN_DEBUG "\ttotal_used %lld, total_dark %lld, "
642 "total_dead %lld\n", lst->total_used, lst->total_dark,
643 lst->total_dead);
644 spin_unlock(&dbg_lock);
645}
646
Artem Bityutskiyf1bd66a2011-03-29 18:36:21 +0300647void dbg_dump_budg(struct ubifs_info *c, const struct ubifs_budg_info *bi)
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300648{
649 int i;
650 struct rb_node *rb;
651 struct ubifs_bud *bud;
652 struct ubifs_gced_idx_leb *idx_gc;
Artem Bityutskiy21a60252008-12-12 11:13:17 -0500653 long long available, outstanding, free;
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300654
Artem Bityutskiy8ff83082011-03-29 18:19:50 +0300655 spin_lock(&c->space_lock);
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300656 spin_lock(&dbg_lock);
Artem Bityutskiy8c3067e2011-03-30 13:18:58 +0300657 printk(KERN_DEBUG "(pid %d) Budgeting info: data budget sum %lld, "
658 "total budget sum %lld\n", current->pid,
Artem Bityutskiyf1bd66a2011-03-29 18:36:21 +0300659 bi->data_growth + bi->dd_growth,
660 bi->data_growth + bi->dd_growth + bi->idx_growth);
Artem Bityutskiy8c3067e2011-03-30 13:18:58 +0300661 printk(KERN_DEBUG "\tbudg_data_growth %lld, budg_dd_growth %lld, "
Artem Bityutskiyf1bd66a2011-03-29 18:36:21 +0300662 "budg_idx_growth %lld\n", bi->data_growth, bi->dd_growth,
663 bi->idx_growth);
Artem Bityutskiy8c3067e2011-03-30 13:18:58 +0300664 printk(KERN_DEBUG "\tmin_idx_lebs %d, old_idx_sz %llu, "
Artem Bityutskiyf1bd66a2011-03-29 18:36:21 +0300665 "uncommitted_idx %lld\n", bi->min_idx_lebs, bi->old_idx_sz,
666 bi->uncommitted_idx);
Artem Bityutskiy8c3067e2011-03-30 13:18:58 +0300667 printk(KERN_DEBUG "\tpage_budget %d, inode_budget %d, dent_budget %d\n",
Artem Bityutskiyf1bd66a2011-03-29 18:36:21 +0300668 bi->page_budget, bi->inode_budget, bi->dent_budget);
Artem Bityutskiy8c3067e2011-03-30 13:18:58 +0300669 printk(KERN_DEBUG "\tnospace %u, nospace_rp %u\n",
Artem Bityutskiyf1bd66a2011-03-29 18:36:21 +0300670 bi->nospace, bi->nospace_rp);
Artem Bityutskiy8c3067e2011-03-30 13:18:58 +0300671 printk(KERN_DEBUG "\tdark_wm %d, dead_wm %d, max_idx_node_sz %d\n",
672 c->dark_wm, c->dead_wm, c->max_idx_node_sz);
Artem Bityutskiyf1bd66a2011-03-29 18:36:21 +0300673
674 if (bi != &c->bi)
675 /*
676 * If we are dumping saved budgeting data, do not print
677 * additional information which is about the current state, not
678 * the old one which corresponded to the saved budgeting data.
679 */
680 goto out_unlock;
681
Artem Bityutskiy8c3067e2011-03-30 13:18:58 +0300682 printk(KERN_DEBUG "\tfreeable_cnt %d, calc_idx_sz %lld, idx_gc_cnt %d\n",
683 c->freeable_cnt, c->calc_idx_sz, c->idx_gc_cnt);
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300684 printk(KERN_DEBUG "\tdirty_pg_cnt %ld, dirty_zn_cnt %ld, "
685 "clean_zn_cnt %ld\n", atomic_long_read(&c->dirty_pg_cnt),
686 atomic_long_read(&c->dirty_zn_cnt),
687 atomic_long_read(&c->clean_zn_cnt));
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300688 printk(KERN_DEBUG "\tgc_lnum %d, ihead_lnum %d\n",
689 c->gc_lnum, c->ihead_lnum);
Artem Bityutskiyf1bd66a2011-03-29 18:36:21 +0300690
Artem Bityutskiy84abf972009-01-23 14:54:59 +0200691 /* If we are in R/O mode, journal heads do not exist */
692 if (c->jheads)
693 for (i = 0; i < c->jhead_cnt; i++)
Artem Bityutskiy77a7ae52009-09-15 15:03:51 +0300694 printk(KERN_DEBUG "\tjhead %s\t LEB %d\n",
695 dbg_jhead(c->jheads[i].wbuf.jhead),
696 c->jheads[i].wbuf.lnum);
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300697 for (rb = rb_first(&c->buds); rb; rb = rb_next(rb)) {
698 bud = rb_entry(rb, struct ubifs_bud, rb);
699 printk(KERN_DEBUG "\tbud LEB %d\n", bud->lnum);
700 }
701 list_for_each_entry(bud, &c->old_buds, list)
702 printk(KERN_DEBUG "\told bud LEB %d\n", bud->lnum);
703 list_for_each_entry(idx_gc, &c->idx_gc, list)
704 printk(KERN_DEBUG "\tGC'ed idx LEB %d unmap %d\n",
705 idx_gc->lnum, idx_gc->unmap);
706 printk(KERN_DEBUG "\tcommit state %d\n", c->cmt_state);
Artem Bityutskiy21a60252008-12-12 11:13:17 -0500707
708 /* Print budgeting predictions */
Artem Bityutskiyb1375452011-03-29 18:04:05 +0300709 available = ubifs_calc_available(c, c->bi.min_idx_lebs);
710 outstanding = c->bi.data_growth + c->bi.dd_growth;
Artem Bityutskiy84abf972009-01-23 14:54:59 +0200711 free = ubifs_get_free_space_nolock(c);
Artem Bityutskiy21a60252008-12-12 11:13:17 -0500712 printk(KERN_DEBUG "Budgeting predictions:\n");
713 printk(KERN_DEBUG "\tavailable: %lld, outstanding %lld, free %lld\n",
714 available, outstanding, free);
Artem Bityutskiyf1bd66a2011-03-29 18:36:21 +0300715out_unlock:
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300716 spin_unlock(&dbg_lock);
Artem Bityutskiy8ff83082011-03-29 18:19:50 +0300717 spin_unlock(&c->space_lock);
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300718}
719
720void dbg_dump_lprop(const struct ubifs_info *c, const struct ubifs_lprops *lp)
721{
Artem Bityutskiybe9e62a2008-12-28 10:17:23 +0200722 int i, spc, dark = 0, dead = 0;
723 struct rb_node *rb;
724 struct ubifs_bud *bud;
725
726 spc = lp->free + lp->dirty;
727 if (spc < c->dead_wm)
728 dead = spc;
729 else
730 dark = ubifs_calc_dark(c, spc);
731
732 if (lp->flags & LPROPS_INDEX)
733 printk(KERN_DEBUG "LEB %-7d free %-8d dirty %-8d used %-8d "
734 "free + dirty %-8d flags %#x (", lp->lnum, lp->free,
735 lp->dirty, c->leb_size - spc, spc, lp->flags);
736 else
737 printk(KERN_DEBUG "LEB %-7d free %-8d dirty %-8d used %-8d "
738 "free + dirty %-8d dark %-4d dead %-4d nodes fit %-3d "
739 "flags %#-4x (", lp->lnum, lp->free, lp->dirty,
740 c->leb_size - spc, spc, dark, dead,
741 (int)(spc / UBIFS_MAX_NODE_SZ), lp->flags);
742
743 if (lp->flags & LPROPS_TAKEN) {
744 if (lp->flags & LPROPS_INDEX)
745 printk(KERN_CONT "index, taken");
746 else
747 printk(KERN_CONT "taken");
748 } else {
749 const char *s;
750
751 if (lp->flags & LPROPS_INDEX) {
752 switch (lp->flags & LPROPS_CAT_MASK) {
753 case LPROPS_DIRTY_IDX:
754 s = "dirty index";
755 break;
756 case LPROPS_FRDI_IDX:
757 s = "freeable index";
758 break;
759 default:
760 s = "index";
761 }
762 } else {
763 switch (lp->flags & LPROPS_CAT_MASK) {
764 case LPROPS_UNCAT:
765 s = "not categorized";
766 break;
767 case LPROPS_DIRTY:
768 s = "dirty";
769 break;
770 case LPROPS_FREE:
771 s = "free";
772 break;
773 case LPROPS_EMPTY:
774 s = "empty";
775 break;
776 case LPROPS_FREEABLE:
777 s = "freeable";
778 break;
779 default:
780 s = NULL;
781 break;
782 }
783 }
784 printk(KERN_CONT "%s", s);
785 }
786
787 for (rb = rb_first((struct rb_root *)&c->buds); rb; rb = rb_next(rb)) {
788 bud = rb_entry(rb, struct ubifs_bud, rb);
789 if (bud->lnum == lp->lnum) {
790 int head = 0;
791 for (i = 0; i < c->jhead_cnt; i++) {
Artem Bityutskiy13216572011-04-24 10:53:17 +0300792 /*
793 * Note, if we are in R/O mode or in the middle
794 * of mounting/re-mounting, the write-buffers do
795 * not exist.
796 */
797 if (c->jheads &&
798 lp->lnum == c->jheads[i].wbuf.lnum) {
Artem Bityutskiybe9e62a2008-12-28 10:17:23 +0200799 printk(KERN_CONT ", jhead %s",
800 dbg_jhead(i));
801 head = 1;
802 }
803 }
804 if (!head)
805 printk(KERN_CONT ", bud of jhead %s",
806 dbg_jhead(bud->jhead));
807 }
808 }
809 if (lp->lnum == c->gc_lnum)
810 printk(KERN_CONT ", GC LEB");
811 printk(KERN_CONT ")\n");
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300812}
813
814void dbg_dump_lprops(struct ubifs_info *c)
815{
816 int lnum, err;
817 struct ubifs_lprops lp;
818 struct ubifs_lp_stats lst;
819
Artem Bityutskiy2ba5f7a2008-10-31 17:32:30 +0200820 printk(KERN_DEBUG "(pid %d) start dumping LEB properties\n",
821 current->pid);
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300822 ubifs_get_lp_stats(c, &lst);
823 dbg_dump_lstats(&lst);
824
825 for (lnum = c->main_first; lnum < c->leb_cnt; lnum++) {
826 err = ubifs_read_one_lp(c, lnum, &lp);
827 if (err)
828 ubifs_err("cannot read lprops for LEB %d", lnum);
829
830 dbg_dump_lprop(c, &lp);
831 }
Artem Bityutskiy2ba5f7a2008-10-31 17:32:30 +0200832 printk(KERN_DEBUG "(pid %d) finish dumping LEB properties\n",
833 current->pid);
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300834}
835
Adrian Hunter73944a62008-09-12 18:13:31 +0300836void dbg_dump_lpt_info(struct ubifs_info *c)
837{
838 int i;
839
840 spin_lock(&dbg_lock);
Artem Bityutskiy2ba5f7a2008-10-31 17:32:30 +0200841 printk(KERN_DEBUG "(pid %d) dumping LPT information\n", current->pid);
Adrian Hunter73944a62008-09-12 18:13:31 +0300842 printk(KERN_DEBUG "\tlpt_sz: %lld\n", c->lpt_sz);
843 printk(KERN_DEBUG "\tpnode_sz: %d\n", c->pnode_sz);
844 printk(KERN_DEBUG "\tnnode_sz: %d\n", c->nnode_sz);
845 printk(KERN_DEBUG "\tltab_sz: %d\n", c->ltab_sz);
846 printk(KERN_DEBUG "\tlsave_sz: %d\n", c->lsave_sz);
847 printk(KERN_DEBUG "\tbig_lpt: %d\n", c->big_lpt);
848 printk(KERN_DEBUG "\tlpt_hght: %d\n", c->lpt_hght);
849 printk(KERN_DEBUG "\tpnode_cnt: %d\n", c->pnode_cnt);
850 printk(KERN_DEBUG "\tnnode_cnt: %d\n", c->nnode_cnt);
851 printk(KERN_DEBUG "\tdirty_pn_cnt: %d\n", c->dirty_pn_cnt);
852 printk(KERN_DEBUG "\tdirty_nn_cnt: %d\n", c->dirty_nn_cnt);
853 printk(KERN_DEBUG "\tlsave_cnt: %d\n", c->lsave_cnt);
854 printk(KERN_DEBUG "\tspace_bits: %d\n", c->space_bits);
855 printk(KERN_DEBUG "\tlpt_lnum_bits: %d\n", c->lpt_lnum_bits);
856 printk(KERN_DEBUG "\tlpt_offs_bits: %d\n", c->lpt_offs_bits);
857 printk(KERN_DEBUG "\tlpt_spc_bits: %d\n", c->lpt_spc_bits);
858 printk(KERN_DEBUG "\tpcnt_bits: %d\n", c->pcnt_bits);
859 printk(KERN_DEBUG "\tlnum_bits: %d\n", c->lnum_bits);
860 printk(KERN_DEBUG "\tLPT root is at %d:%d\n", c->lpt_lnum, c->lpt_offs);
861 printk(KERN_DEBUG "\tLPT head is at %d:%d\n",
862 c->nhead_lnum, c->nhead_offs);
Artem Bityutskiyf92b9822008-12-28 11:34:26 +0200863 printk(KERN_DEBUG "\tLPT ltab is at %d:%d\n",
864 c->ltab_lnum, c->ltab_offs);
Adrian Hunter73944a62008-09-12 18:13:31 +0300865 if (c->big_lpt)
866 printk(KERN_DEBUG "\tLPT lsave is at %d:%d\n",
867 c->lsave_lnum, c->lsave_offs);
868 for (i = 0; i < c->lpt_lebs; i++)
869 printk(KERN_DEBUG "\tLPT LEB %d free %d dirty %d tgc %d "
870 "cmt %d\n", i + c->lpt_first, c->ltab[i].free,
871 c->ltab[i].dirty, c->ltab[i].tgc, c->ltab[i].cmt);
872 spin_unlock(&dbg_lock);
873}
874
Artem Bityutskiyd37854c2011-08-22 16:23:56 +0300875void dbg_dump_sleb(const struct ubifs_info *c,
876 const struct ubifs_scan_leb *sleb, int offs)
877{
878 struct ubifs_scan_node *snod;
879
880 printk(KERN_DEBUG "(pid %d) start dumping scanned data from LEB %d:%d\n",
881 current->pid, sleb->lnum, offs);
882
883 list_for_each_entry(snod, &sleb->nodes, list) {
884 cond_resched();
885 printk(KERN_DEBUG "Dumping node at LEB %d:%d len %d\n", sleb->lnum,
886 snod->offs, snod->len);
887 dbg_dump_node(c, snod->node);
888 }
889}
890
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300891void dbg_dump_leb(const struct ubifs_info *c, int lnum)
892{
893 struct ubifs_scan_leb *sleb;
894 struct ubifs_scan_node *snod;
Artem Bityutskiy73d9aec2011-03-11 15:39:09 +0200895 void *buf;
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300896
Artem Bityutskiy2b1844a2011-06-03 08:31:29 +0300897 if (dbg_is_tst_rcvry(c))
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300898 return;
899
Artem Bityutskiy2ba5f7a2008-10-31 17:32:30 +0200900 printk(KERN_DEBUG "(pid %d) start dumping LEB %d\n",
901 current->pid, lnum);
Artem Bityutskiy73d9aec2011-03-11 15:39:09 +0200902
Artem Bityutskiyfc5e58c2011-03-24 16:14:26 +0200903 buf = __vmalloc(c->leb_size, GFP_NOFS, PAGE_KERNEL);
Artem Bityutskiy73d9aec2011-03-11 15:39:09 +0200904 if (!buf) {
905 ubifs_err("cannot allocate memory for dumping LEB %d", lnum);
906 return;
907 }
908
909 sleb = ubifs_scan(c, lnum, 0, buf, 0);
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300910 if (IS_ERR(sleb)) {
911 ubifs_err("scan error %d", (int)PTR_ERR(sleb));
Artem Bityutskiy73d9aec2011-03-11 15:39:09 +0200912 goto out;
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300913 }
914
915 printk(KERN_DEBUG "LEB %d has %d nodes ending at %d\n", lnum,
916 sleb->nodes_cnt, sleb->endpt);
917
918 list_for_each_entry(snod, &sleb->nodes, list) {
919 cond_resched();
920 printk(KERN_DEBUG "Dumping node at LEB %d:%d len %d\n", lnum,
921 snod->offs, snod->len);
922 dbg_dump_node(c, snod->node);
923 }
924
Artem Bityutskiy2ba5f7a2008-10-31 17:32:30 +0200925 printk(KERN_DEBUG "(pid %d) finish dumping LEB %d\n",
926 current->pid, lnum);
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300927 ubifs_scan_destroy(sleb);
Artem Bityutskiy73d9aec2011-03-11 15:39:09 +0200928
929out:
930 vfree(buf);
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300931 return;
932}
933
934void dbg_dump_znode(const struct ubifs_info *c,
935 const struct ubifs_znode *znode)
936{
937 int n;
938 const struct ubifs_zbranch *zbr;
939
940 spin_lock(&dbg_lock);
941 if (znode->parent)
942 zbr = &znode->parent->zbranch[znode->iip];
943 else
944 zbr = &c->zroot;
945
946 printk(KERN_DEBUG "znode %p, LEB %d:%d len %d parent %p iip %d level %d"
947 " child_cnt %d flags %lx\n", znode, zbr->lnum, zbr->offs,
948 zbr->len, znode->parent, znode->iip, znode->level,
949 znode->child_cnt, znode->flags);
950
951 if (znode->child_cnt <= 0 || znode->child_cnt > c->fanout) {
952 spin_unlock(&dbg_lock);
953 return;
954 }
955
956 printk(KERN_DEBUG "zbranches:\n");
957 for (n = 0; n < znode->child_cnt; n++) {
958 zbr = &znode->zbranch[n];
959 if (znode->level > 0)
960 printk(KERN_DEBUG "\t%d: znode %p LEB %d:%d len %d key "
961 "%s\n", n, zbr->znode, zbr->lnum,
962 zbr->offs, zbr->len,
963 DBGKEY(&zbr->key));
964 else
965 printk(KERN_DEBUG "\t%d: LNC %p LEB %d:%d len %d key "
966 "%s\n", n, zbr->znode, zbr->lnum,
967 zbr->offs, zbr->len,
968 DBGKEY(&zbr->key));
969 }
970 spin_unlock(&dbg_lock);
971}
972
973void dbg_dump_heap(struct ubifs_info *c, struct ubifs_lpt_heap *heap, int cat)
974{
975 int i;
976
Artem Bityutskiy2ba5f7a2008-10-31 17:32:30 +0200977 printk(KERN_DEBUG "(pid %d) start dumping heap cat %d (%d elements)\n",
Artem Bityutskiy1de94152008-07-25 12:58:38 +0300978 current->pid, cat, heap->cnt);
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300979 for (i = 0; i < heap->cnt; i++) {
980 struct ubifs_lprops *lprops = heap->arr[i];
981
982 printk(KERN_DEBUG "\t%d. LEB %d hpos %d free %d dirty %d "
983 "flags %d\n", i, lprops->lnum, lprops->hpos,
984 lprops->free, lprops->dirty, lprops->flags);
985 }
Artem Bityutskiy2ba5f7a2008-10-31 17:32:30 +0200986 printk(KERN_DEBUG "(pid %d) finish dumping heap\n", current->pid);
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300987}
988
989void dbg_dump_pnode(struct ubifs_info *c, struct ubifs_pnode *pnode,
990 struct ubifs_nnode *parent, int iip)
991{
992 int i;
993
Artem Bityutskiy2ba5f7a2008-10-31 17:32:30 +0200994 printk(KERN_DEBUG "(pid %d) dumping pnode:\n", current->pid);
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300995 printk(KERN_DEBUG "\taddress %zx parent %zx cnext %zx\n",
996 (size_t)pnode, (size_t)parent, (size_t)pnode->cnext);
997 printk(KERN_DEBUG "\tflags %lu iip %d level %d num %d\n",
998 pnode->flags, iip, pnode->level, pnode->num);
999 for (i = 0; i < UBIFS_LPT_FANOUT; i++) {
1000 struct ubifs_lprops *lp = &pnode->lprops[i];
1001
1002 printk(KERN_DEBUG "\t%d: free %d dirty %d flags %d lnum %d\n",
1003 i, lp->free, lp->dirty, lp->flags, lp->lnum);
1004 }
1005}
1006
1007void dbg_dump_tnc(struct ubifs_info *c)
1008{
1009 struct ubifs_znode *znode;
1010 int level;
1011
1012 printk(KERN_DEBUG "\n");
Artem Bityutskiy2ba5f7a2008-10-31 17:32:30 +02001013 printk(KERN_DEBUG "(pid %d) start dumping TNC tree\n", current->pid);
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001014 znode = ubifs_tnc_levelorder_next(c->zroot.znode, NULL);
1015 level = znode->level;
1016 printk(KERN_DEBUG "== Level %d ==\n", level);
1017 while (znode) {
1018 if (level != znode->level) {
1019 level = znode->level;
1020 printk(KERN_DEBUG "== Level %d ==\n", level);
1021 }
1022 dbg_dump_znode(c, znode);
1023 znode = ubifs_tnc_levelorder_next(c->zroot.znode, znode);
1024 }
Artem Bityutskiy2ba5f7a2008-10-31 17:32:30 +02001025 printk(KERN_DEBUG "(pid %d) finish dumping TNC tree\n", current->pid);
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001026}
1027
1028static int dump_znode(struct ubifs_info *c, struct ubifs_znode *znode,
1029 void *priv)
1030{
1031 dbg_dump_znode(c, znode);
1032 return 0;
1033}
1034
1035/**
1036 * dbg_dump_index - dump the on-flash index.
1037 * @c: UBIFS file-system description object
1038 *
1039 * This function dumps whole UBIFS indexing B-tree, unlike 'dbg_dump_tnc()'
1040 * which dumps only in-memory znodes and does not read znodes which from flash.
1041 */
1042void dbg_dump_index(struct ubifs_info *c)
1043{
1044 dbg_walk_index(c, NULL, dump_znode, NULL);
1045}
1046
1047/**
Artem Bityutskiy84abf972009-01-23 14:54:59 +02001048 * dbg_save_space_info - save information about flash space.
1049 * @c: UBIFS file-system description object
1050 *
1051 * This function saves information about UBIFS free space, dirty space, etc, in
1052 * order to check it later.
1053 */
1054void dbg_save_space_info(struct ubifs_info *c)
1055{
1056 struct ubifs_debug_info *d = c->dbg;
Artem Bityutskiy7da64432011-04-04 17:16:39 +03001057 int freeable_cnt;
Artem Bityutskiy84abf972009-01-23 14:54:59 +02001058
1059 spin_lock(&c->space_lock);
Artem Bityutskiy7da64432011-04-04 17:16:39 +03001060 memcpy(&d->saved_lst, &c->lst, sizeof(struct ubifs_lp_stats));
Artem Bityutskiyf1bd66a2011-03-29 18:36:21 +03001061 memcpy(&d->saved_bi, &c->bi, sizeof(struct ubifs_budg_info));
1062 d->saved_idx_gc_cnt = c->idx_gc_cnt;
Artem Bityutskiy7da64432011-04-04 17:16:39 +03001063
1064 /*
1065 * We use a dirty hack here and zero out @c->freeable_cnt, because it
1066 * affects the free space calculations, and UBIFS might not know about
1067 * all freeable eraseblocks. Indeed, we know about freeable eraseblocks
1068 * only when we read their lprops, and we do this only lazily, upon the
1069 * need. So at any given point of time @c->freeable_cnt might be not
1070 * exactly accurate.
1071 *
1072 * Just one example about the issue we hit when we did not zero
1073 * @c->freeable_cnt.
1074 * 1. The file-system is mounted R/O, c->freeable_cnt is %0. We save the
1075 * amount of free space in @d->saved_free
1076 * 2. We re-mount R/W, which makes UBIFS to read the "lsave"
1077 * information from flash, where we cache LEBs from various
1078 * categories ('ubifs_remount_fs()' -> 'ubifs_lpt_init()'
1079 * -> 'lpt_init_wr()' -> 'read_lsave()' -> 'ubifs_lpt_lookup()'
1080 * -> 'ubifs_get_pnode()' -> 'update_cats()'
1081 * -> 'ubifs_add_to_cat()').
1082 * 3. Lsave contains a freeable eraseblock, and @c->freeable_cnt
1083 * becomes %1.
1084 * 4. We calculate the amount of free space when the re-mount is
1085 * finished in 'dbg_check_space_info()' and it does not match
1086 * @d->saved_free.
1087 */
1088 freeable_cnt = c->freeable_cnt;
1089 c->freeable_cnt = 0;
Artem Bityutskiy84abf972009-01-23 14:54:59 +02001090 d->saved_free = ubifs_get_free_space_nolock(c);
Artem Bityutskiy7da64432011-04-04 17:16:39 +03001091 c->freeable_cnt = freeable_cnt;
Artem Bityutskiy84abf972009-01-23 14:54:59 +02001092 spin_unlock(&c->space_lock);
1093}
1094
1095/**
1096 * dbg_check_space_info - check flash space information.
1097 * @c: UBIFS file-system description object
1098 *
1099 * This function compares current flash space information with the information
1100 * which was saved when the 'dbg_save_space_info()' function was called.
1101 * Returns zero if the information has not changed, and %-EINVAL it it has
1102 * changed.
1103 */
1104int dbg_check_space_info(struct ubifs_info *c)
1105{
1106 struct ubifs_debug_info *d = c->dbg;
1107 struct ubifs_lp_stats lst;
Artem Bityutskiy7da64432011-04-04 17:16:39 +03001108 long long free;
1109 int freeable_cnt;
Artem Bityutskiy84abf972009-01-23 14:54:59 +02001110
1111 spin_lock(&c->space_lock);
Artem Bityutskiy7da64432011-04-04 17:16:39 +03001112 freeable_cnt = c->freeable_cnt;
1113 c->freeable_cnt = 0;
1114 free = ubifs_get_free_space_nolock(c);
1115 c->freeable_cnt = freeable_cnt;
Artem Bityutskiy84abf972009-01-23 14:54:59 +02001116 spin_unlock(&c->space_lock);
Artem Bityutskiy84abf972009-01-23 14:54:59 +02001117
1118 if (free != d->saved_free) {
1119 ubifs_err("free space changed from %lld to %lld",
1120 d->saved_free, free);
1121 goto out;
1122 }
1123
1124 return 0;
1125
1126out:
1127 ubifs_msg("saved lprops statistics dump");
1128 dbg_dump_lstats(&d->saved_lst);
Artem Bityutskiyf1bd66a2011-03-29 18:36:21 +03001129 ubifs_msg("saved budgeting info dump");
1130 dbg_dump_budg(c, &d->saved_bi);
1131 ubifs_msg("saved idx_gc_cnt %d", d->saved_idx_gc_cnt);
Artem Bityutskiy84abf972009-01-23 14:54:59 +02001132 ubifs_msg("current lprops statistics dump");
Artem Bityutskiyf1bd66a2011-03-29 18:36:21 +03001133 ubifs_get_lp_stats(c, &lst);
Artem Bityutskiye055f7e2009-09-17 15:08:31 +03001134 dbg_dump_lstats(&lst);
Artem Bityutskiyf1bd66a2011-03-29 18:36:21 +03001135 ubifs_msg("current budgeting info dump");
1136 dbg_dump_budg(c, &c->bi);
Artem Bityutskiy84abf972009-01-23 14:54:59 +02001137 dump_stack();
1138 return -EINVAL;
1139}
1140
1141/**
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001142 * dbg_check_synced_i_size - check synchronized inode size.
Artem Bityutskiyd808efb2011-05-31 18:14:38 +03001143 * @c: UBIFS file-system description object
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001144 * @inode: inode to check
1145 *
1146 * If inode is clean, synchronized inode size has to be equivalent to current
1147 * inode size. This function has to be called only for locked inodes (@i_mutex
1148 * has to be locked). Returns %0 if synchronized inode size if correct, and
1149 * %-EINVAL if not.
1150 */
Artem Bityutskiyd808efb2011-05-31 18:14:38 +03001151int dbg_check_synced_i_size(const struct ubifs_info *c, struct inode *inode)
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001152{
1153 int err = 0;
1154 struct ubifs_inode *ui = ubifs_inode(inode);
1155
Artem Bityutskiy2b1844a2011-06-03 08:31:29 +03001156 if (!dbg_is_chk_gen(c))
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001157 return 0;
1158 if (!S_ISREG(inode->i_mode))
1159 return 0;
1160
1161 mutex_lock(&ui->ui_mutex);
1162 spin_lock(&ui->ui_lock);
1163 if (ui->ui_size != ui->synced_i_size && !ui->dirty) {
1164 ubifs_err("ui_size is %lld, synced_i_size is %lld, but inode "
1165 "is clean", ui->ui_size, ui->synced_i_size);
1166 ubifs_err("i_ino %lu, i_mode %#x, i_size %lld", inode->i_ino,
1167 inode->i_mode, i_size_read(inode));
1168 dbg_dump_stack();
1169 err = -EINVAL;
1170 }
1171 spin_unlock(&ui->ui_lock);
1172 mutex_unlock(&ui->ui_mutex);
1173 return err;
1174}
1175
1176/*
1177 * dbg_check_dir - check directory inode size and link count.
1178 * @c: UBIFS file-system description object
1179 * @dir: the directory to calculate size for
1180 * @size: the result is returned here
1181 *
1182 * This function makes sure that directory size and link count are correct.
1183 * Returns zero in case of success and a negative error code in case of
1184 * failure.
1185 *
1186 * Note, it is good idea to make sure the @dir->i_mutex is locked before
1187 * calling this function.
1188 */
Artem Bityutskiy1b51e982011-05-25 17:38:29 +03001189int dbg_check_dir(struct ubifs_info *c, const struct inode *dir)
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001190{
1191 unsigned int nlink = 2;
1192 union ubifs_key key;
1193 struct ubifs_dent_node *dent, *pdent = NULL;
1194 struct qstr nm = { .name = NULL };
1195 loff_t size = UBIFS_INO_NODE_SZ;
1196
Artem Bityutskiy2b1844a2011-06-03 08:31:29 +03001197 if (!dbg_is_chk_gen(c))
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001198 return 0;
1199
1200 if (!S_ISDIR(dir->i_mode))
1201 return 0;
1202
1203 lowest_dent_key(c, &key, dir->i_ino);
1204 while (1) {
1205 int err;
1206
1207 dent = ubifs_tnc_next_ent(c, &key, &nm);
1208 if (IS_ERR(dent)) {
1209 err = PTR_ERR(dent);
1210 if (err == -ENOENT)
1211 break;
1212 return err;
1213 }
1214
1215 nm.name = dent->name;
1216 nm.len = le16_to_cpu(dent->nlen);
1217 size += CALC_DENT_SIZE(nm.len);
1218 if (dent->type == UBIFS_ITYPE_DIR)
1219 nlink += 1;
1220 kfree(pdent);
1221 pdent = dent;
1222 key_read(c, &dent->key, &key);
1223 }
1224 kfree(pdent);
1225
1226 if (i_size_read(dir) != size) {
1227 ubifs_err("directory inode %lu has size %llu, "
1228 "but calculated size is %llu", dir->i_ino,
1229 (unsigned long long)i_size_read(dir),
1230 (unsigned long long)size);
Artem Bityutskiy4315fb42011-05-25 17:32:42 +03001231 dbg_dump_inode(c, dir);
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001232 dump_stack();
1233 return -EINVAL;
1234 }
1235 if (dir->i_nlink != nlink) {
1236 ubifs_err("directory inode %lu has nlink %u, but calculated "
1237 "nlink is %u", dir->i_ino, dir->i_nlink, nlink);
Artem Bityutskiy4315fb42011-05-25 17:32:42 +03001238 dbg_dump_inode(c, dir);
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001239 dump_stack();
1240 return -EINVAL;
1241 }
1242
1243 return 0;
1244}
1245
1246/**
1247 * dbg_check_key_order - make sure that colliding keys are properly ordered.
1248 * @c: UBIFS file-system description object
1249 * @zbr1: first zbranch
1250 * @zbr2: following zbranch
1251 *
1252 * In UBIFS indexing B-tree colliding keys has to be sorted in binary order of
1253 * names of the direntries/xentries which are referred by the keys. This
1254 * function reads direntries/xentries referred by @zbr1 and @zbr2 and makes
1255 * sure the name of direntry/xentry referred by @zbr1 is less than
1256 * direntry/xentry referred by @zbr2. Returns zero if this is true, %1 if not,
1257 * and a negative error code in case of failure.
1258 */
1259static int dbg_check_key_order(struct ubifs_info *c, struct ubifs_zbranch *zbr1,
1260 struct ubifs_zbranch *zbr2)
1261{
1262 int err, nlen1, nlen2, cmp;
1263 struct ubifs_dent_node *dent1, *dent2;
1264 union ubifs_key key;
1265
1266 ubifs_assert(!keys_cmp(c, &zbr1->key, &zbr2->key));
1267 dent1 = kmalloc(UBIFS_MAX_DENT_NODE_SZ, GFP_NOFS);
1268 if (!dent1)
1269 return -ENOMEM;
1270 dent2 = kmalloc(UBIFS_MAX_DENT_NODE_SZ, GFP_NOFS);
1271 if (!dent2) {
1272 err = -ENOMEM;
1273 goto out_free;
1274 }
1275
1276 err = ubifs_tnc_read_node(c, zbr1, dent1);
1277 if (err)
1278 goto out_free;
1279 err = ubifs_validate_entry(c, dent1);
1280 if (err)
1281 goto out_free;
1282
1283 err = ubifs_tnc_read_node(c, zbr2, dent2);
1284 if (err)
1285 goto out_free;
1286 err = ubifs_validate_entry(c, dent2);
1287 if (err)
1288 goto out_free;
1289
1290 /* Make sure node keys are the same as in zbranch */
1291 err = 1;
1292 key_read(c, &dent1->key, &key);
1293 if (keys_cmp(c, &zbr1->key, &key)) {
Artem Bityutskiy5d38b3a2008-12-30 17:58:42 +02001294 dbg_err("1st entry at %d:%d has key %s", zbr1->lnum,
1295 zbr1->offs, DBGKEY(&key));
1296 dbg_err("but it should have key %s according to tnc",
1297 DBGKEY(&zbr1->key));
Artem Bityutskiy2ba5f7a2008-10-31 17:32:30 +02001298 dbg_dump_node(c, dent1);
Artem Bityutskiy552ff312008-10-23 11:49:28 +03001299 goto out_free;
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001300 }
1301
1302 key_read(c, &dent2->key, &key);
1303 if (keys_cmp(c, &zbr2->key, &key)) {
Artem Bityutskiy5d38b3a2008-12-30 17:58:42 +02001304 dbg_err("2nd entry at %d:%d has key %s", zbr1->lnum,
1305 zbr1->offs, DBGKEY(&key));
1306 dbg_err("but it should have key %s according to tnc",
1307 DBGKEY(&zbr2->key));
Artem Bityutskiy2ba5f7a2008-10-31 17:32:30 +02001308 dbg_dump_node(c, dent2);
Artem Bityutskiy552ff312008-10-23 11:49:28 +03001309 goto out_free;
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001310 }
1311
1312 nlen1 = le16_to_cpu(dent1->nlen);
1313 nlen2 = le16_to_cpu(dent2->nlen);
1314
1315 cmp = memcmp(dent1->name, dent2->name, min_t(int, nlen1, nlen2));
1316 if (cmp < 0 || (cmp == 0 && nlen1 < nlen2)) {
1317 err = 0;
1318 goto out_free;
1319 }
1320 if (cmp == 0 && nlen1 == nlen2)
Artem Bityutskiy5d38b3a2008-12-30 17:58:42 +02001321 dbg_err("2 xent/dent nodes with the same name");
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001322 else
Artem Bityutskiy5d38b3a2008-12-30 17:58:42 +02001323 dbg_err("bad order of colliding key %s",
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001324 DBGKEY(&key));
1325
Artem Bityutskiy552ff312008-10-23 11:49:28 +03001326 ubifs_msg("first node at %d:%d\n", zbr1->lnum, zbr1->offs);
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001327 dbg_dump_node(c, dent1);
Artem Bityutskiy552ff312008-10-23 11:49:28 +03001328 ubifs_msg("second node at %d:%d\n", zbr2->lnum, zbr2->offs);
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001329 dbg_dump_node(c, dent2);
1330
1331out_free:
1332 kfree(dent2);
1333 kfree(dent1);
1334 return err;
1335}
1336
1337/**
1338 * dbg_check_znode - check if znode is all right.
1339 * @c: UBIFS file-system description object
1340 * @zbr: zbranch which points to this znode
1341 *
1342 * This function makes sure that znode referred to by @zbr is all right.
1343 * Returns zero if it is, and %-EINVAL if it is not.
1344 */
1345static int dbg_check_znode(struct ubifs_info *c, struct ubifs_zbranch *zbr)
1346{
1347 struct ubifs_znode *znode = zbr->znode;
1348 struct ubifs_znode *zp = znode->parent;
1349 int n, err, cmp;
1350
1351 if (znode->child_cnt <= 0 || znode->child_cnt > c->fanout) {
1352 err = 1;
1353 goto out;
1354 }
1355 if (znode->level < 0) {
1356 err = 2;
1357 goto out;
1358 }
1359 if (znode->iip < 0 || znode->iip >= c->fanout) {
1360 err = 3;
1361 goto out;
1362 }
1363
1364 if (zbr->len == 0)
1365 /* Only dirty zbranch may have no on-flash nodes */
1366 if (!ubifs_zn_dirty(znode)) {
1367 err = 4;
1368 goto out;
1369 }
1370
1371 if (ubifs_zn_dirty(znode)) {
1372 /*
1373 * If znode is dirty, its parent has to be dirty as well. The
1374 * order of the operation is important, so we have to have
1375 * memory barriers.
1376 */
1377 smp_mb();
1378 if (zp && !ubifs_zn_dirty(zp)) {
1379 /*
1380 * The dirty flag is atomic and is cleared outside the
1381 * TNC mutex, so znode's dirty flag may now have
1382 * been cleared. The child is always cleared before the
1383 * parent, so we just need to check again.
1384 */
1385 smp_mb();
1386 if (ubifs_zn_dirty(znode)) {
1387 err = 5;
1388 goto out;
1389 }
1390 }
1391 }
1392
1393 if (zp) {
1394 const union ubifs_key *min, *max;
1395
1396 if (znode->level != zp->level - 1) {
1397 err = 6;
1398 goto out;
1399 }
1400
1401 /* Make sure the 'parent' pointer in our znode is correct */
1402 err = ubifs_search_zbranch(c, zp, &zbr->key, &n);
1403 if (!err) {
1404 /* This zbranch does not exist in the parent */
1405 err = 7;
1406 goto out;
1407 }
1408
1409 if (znode->iip >= zp->child_cnt) {
1410 err = 8;
1411 goto out;
1412 }
1413
1414 if (znode->iip != n) {
1415 /* This may happen only in case of collisions */
1416 if (keys_cmp(c, &zp->zbranch[n].key,
1417 &zp->zbranch[znode->iip].key)) {
1418 err = 9;
1419 goto out;
1420 }
1421 n = znode->iip;
1422 }
1423
1424 /*
1425 * Make sure that the first key in our znode is greater than or
1426 * equal to the key in the pointing zbranch.
1427 */
1428 min = &zbr->key;
1429 cmp = keys_cmp(c, min, &znode->zbranch[0].key);
1430 if (cmp == 1) {
1431 err = 10;
1432 goto out;
1433 }
1434
1435 if (n + 1 < zp->child_cnt) {
1436 max = &zp->zbranch[n + 1].key;
1437
1438 /*
1439 * Make sure the last key in our znode is less or
Artem Bityutskiy7d4e9cc2009-03-20 19:11:12 +02001440 * equivalent than the key in the zbranch which goes
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001441 * after our pointing zbranch.
1442 */
1443 cmp = keys_cmp(c, max,
1444 &znode->zbranch[znode->child_cnt - 1].key);
1445 if (cmp == -1) {
1446 err = 11;
1447 goto out;
1448 }
1449 }
1450 } else {
1451 /* This may only be root znode */
1452 if (zbr != &c->zroot) {
1453 err = 12;
1454 goto out;
1455 }
1456 }
1457
1458 /*
1459 * Make sure that next key is greater or equivalent then the previous
1460 * one.
1461 */
1462 for (n = 1; n < znode->child_cnt; n++) {
1463 cmp = keys_cmp(c, &znode->zbranch[n - 1].key,
1464 &znode->zbranch[n].key);
1465 if (cmp > 0) {
1466 err = 13;
1467 goto out;
1468 }
1469 if (cmp == 0) {
1470 /* This can only be keys with colliding hash */
1471 if (!is_hash_key(c, &znode->zbranch[n].key)) {
1472 err = 14;
1473 goto out;
1474 }
1475
1476 if (znode->level != 0 || c->replaying)
1477 continue;
1478
1479 /*
1480 * Colliding keys should follow binary order of
1481 * corresponding xentry/dentry names.
1482 */
1483 err = dbg_check_key_order(c, &znode->zbranch[n - 1],
1484 &znode->zbranch[n]);
1485 if (err < 0)
1486 return err;
1487 if (err) {
1488 err = 15;
1489 goto out;
1490 }
1491 }
1492 }
1493
1494 for (n = 0; n < znode->child_cnt; n++) {
1495 if (!znode->zbranch[n].znode &&
1496 (znode->zbranch[n].lnum == 0 ||
1497 znode->zbranch[n].len == 0)) {
1498 err = 16;
1499 goto out;
1500 }
1501
1502 if (znode->zbranch[n].lnum != 0 &&
1503 znode->zbranch[n].len == 0) {
1504 err = 17;
1505 goto out;
1506 }
1507
1508 if (znode->zbranch[n].lnum == 0 &&
1509 znode->zbranch[n].len != 0) {
1510 err = 18;
1511 goto out;
1512 }
1513
1514 if (znode->zbranch[n].lnum == 0 &&
1515 znode->zbranch[n].offs != 0) {
1516 err = 19;
1517 goto out;
1518 }
1519
1520 if (znode->level != 0 && znode->zbranch[n].znode)
1521 if (znode->zbranch[n].znode->parent != znode) {
1522 err = 20;
1523 goto out;
1524 }
1525 }
1526
1527 return 0;
1528
1529out:
1530 ubifs_err("failed, error %d", err);
1531 ubifs_msg("dump of the znode");
1532 dbg_dump_znode(c, znode);
1533 if (zp) {
1534 ubifs_msg("dump of the parent znode");
1535 dbg_dump_znode(c, zp);
1536 }
1537 dump_stack();
1538 return -EINVAL;
1539}
1540
1541/**
1542 * dbg_check_tnc - check TNC tree.
1543 * @c: UBIFS file-system description object
1544 * @extra: do extra checks that are possible at start commit
1545 *
1546 * This function traverses whole TNC tree and checks every znode. Returns zero
1547 * if everything is all right and %-EINVAL if something is wrong with TNC.
1548 */
1549int dbg_check_tnc(struct ubifs_info *c, int extra)
1550{
1551 struct ubifs_znode *znode;
1552 long clean_cnt = 0, dirty_cnt = 0;
1553 int err, last;
1554
Artem Bityutskiy8d7819b2011-06-03 08:53:35 +03001555 if (!dbg_is_chk_index(c))
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001556 return 0;
1557
1558 ubifs_assert(mutex_is_locked(&c->tnc_mutex));
1559 if (!c->zroot.znode)
1560 return 0;
1561
1562 znode = ubifs_tnc_postorder_first(c->zroot.znode);
1563 while (1) {
1564 struct ubifs_znode *prev;
1565 struct ubifs_zbranch *zbr;
1566
1567 if (!znode->parent)
1568 zbr = &c->zroot;
1569 else
1570 zbr = &znode->parent->zbranch[znode->iip];
1571
1572 err = dbg_check_znode(c, zbr);
1573 if (err)
1574 return err;
1575
1576 if (extra) {
1577 if (ubifs_zn_dirty(znode))
1578 dirty_cnt += 1;
1579 else
1580 clean_cnt += 1;
1581 }
1582
1583 prev = znode;
1584 znode = ubifs_tnc_postorder_next(znode);
1585 if (!znode)
1586 break;
1587
1588 /*
1589 * If the last key of this znode is equivalent to the first key
1590 * of the next znode (collision), then check order of the keys.
1591 */
1592 last = prev->child_cnt - 1;
1593 if (prev->level == 0 && znode->level == 0 && !c->replaying &&
1594 !keys_cmp(c, &prev->zbranch[last].key,
1595 &znode->zbranch[0].key)) {
1596 err = dbg_check_key_order(c, &prev->zbranch[last],
1597 &znode->zbranch[0]);
1598 if (err < 0)
1599 return err;
1600 if (err) {
1601 ubifs_msg("first znode");
1602 dbg_dump_znode(c, prev);
1603 ubifs_msg("second znode");
1604 dbg_dump_znode(c, znode);
1605 return -EINVAL;
1606 }
1607 }
1608 }
1609
1610 if (extra) {
1611 if (clean_cnt != atomic_long_read(&c->clean_zn_cnt)) {
1612 ubifs_err("incorrect clean_zn_cnt %ld, calculated %ld",
1613 atomic_long_read(&c->clean_zn_cnt),
1614 clean_cnt);
1615 return -EINVAL;
1616 }
1617 if (dirty_cnt != atomic_long_read(&c->dirty_zn_cnt)) {
1618 ubifs_err("incorrect dirty_zn_cnt %ld, calculated %ld",
1619 atomic_long_read(&c->dirty_zn_cnt),
1620 dirty_cnt);
1621 return -EINVAL;
1622 }
1623 }
1624
1625 return 0;
1626}
1627
1628/**
1629 * dbg_walk_index - walk the on-flash index.
1630 * @c: UBIFS file-system description object
1631 * @leaf_cb: called for each leaf node
1632 * @znode_cb: called for each indexing node
Adrian Hunter227c75c2009-01-29 11:53:51 +02001633 * @priv: private data which is passed to callbacks
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001634 *
1635 * This function walks the UBIFS index and calls the @leaf_cb for each leaf
1636 * node and @znode_cb for each indexing node. Returns zero in case of success
1637 * and a negative error code in case of failure.
1638 *
1639 * It would be better if this function removed every znode it pulled to into
1640 * the TNC, so that the behavior more closely matched the non-debugging
1641 * behavior.
1642 */
1643int dbg_walk_index(struct ubifs_info *c, dbg_leaf_callback leaf_cb,
1644 dbg_znode_callback znode_cb, void *priv)
1645{
1646 int err;
1647 struct ubifs_zbranch *zbr;
1648 struct ubifs_znode *znode, *child;
1649
1650 mutex_lock(&c->tnc_mutex);
1651 /* If the root indexing node is not in TNC - pull it */
1652 if (!c->zroot.znode) {
1653 c->zroot.znode = ubifs_load_znode(c, &c->zroot, NULL, 0);
1654 if (IS_ERR(c->zroot.znode)) {
1655 err = PTR_ERR(c->zroot.znode);
1656 c->zroot.znode = NULL;
1657 goto out_unlock;
1658 }
1659 }
1660
1661 /*
1662 * We are going to traverse the indexing tree in the postorder manner.
1663 * Go down and find the leftmost indexing node where we are going to
1664 * start from.
1665 */
1666 znode = c->zroot.znode;
1667 while (znode->level > 0) {
1668 zbr = &znode->zbranch[0];
1669 child = zbr->znode;
1670 if (!child) {
1671 child = ubifs_load_znode(c, zbr, znode, 0);
1672 if (IS_ERR(child)) {
1673 err = PTR_ERR(child);
1674 goto out_unlock;
1675 }
1676 zbr->znode = child;
1677 }
1678
1679 znode = child;
1680 }
1681
1682 /* Iterate over all indexing nodes */
1683 while (1) {
1684 int idx;
1685
1686 cond_resched();
1687
1688 if (znode_cb) {
1689 err = znode_cb(c, znode, priv);
1690 if (err) {
1691 ubifs_err("znode checking function returned "
1692 "error %d", err);
1693 dbg_dump_znode(c, znode);
1694 goto out_dump;
1695 }
1696 }
1697 if (leaf_cb && znode->level == 0) {
1698 for (idx = 0; idx < znode->child_cnt; idx++) {
1699 zbr = &znode->zbranch[idx];
1700 err = leaf_cb(c, zbr, priv);
1701 if (err) {
1702 ubifs_err("leaf checking function "
1703 "returned error %d, for leaf "
1704 "at LEB %d:%d",
1705 err, zbr->lnum, zbr->offs);
1706 goto out_dump;
1707 }
1708 }
1709 }
1710
1711 if (!znode->parent)
1712 break;
1713
1714 idx = znode->iip + 1;
1715 znode = znode->parent;
1716 if (idx < znode->child_cnt) {
1717 /* Switch to the next index in the parent */
1718 zbr = &znode->zbranch[idx];
1719 child = zbr->znode;
1720 if (!child) {
1721 child = ubifs_load_znode(c, zbr, znode, idx);
1722 if (IS_ERR(child)) {
1723 err = PTR_ERR(child);
1724 goto out_unlock;
1725 }
1726 zbr->znode = child;
1727 }
1728 znode = child;
1729 } else
1730 /*
1731 * This is the last child, switch to the parent and
1732 * continue.
1733 */
1734 continue;
1735
1736 /* Go to the lowest leftmost znode in the new sub-tree */
1737 while (znode->level > 0) {
1738 zbr = &znode->zbranch[0];
1739 child = zbr->znode;
1740 if (!child) {
1741 child = ubifs_load_znode(c, zbr, znode, 0);
1742 if (IS_ERR(child)) {
1743 err = PTR_ERR(child);
1744 goto out_unlock;
1745 }
1746 zbr->znode = child;
1747 }
1748 znode = child;
1749 }
1750 }
1751
1752 mutex_unlock(&c->tnc_mutex);
1753 return 0;
1754
1755out_dump:
1756 if (znode->parent)
1757 zbr = &znode->parent->zbranch[znode->iip];
1758 else
1759 zbr = &c->zroot;
1760 ubifs_msg("dump of znode at LEB %d:%d", zbr->lnum, zbr->offs);
1761 dbg_dump_znode(c, znode);
1762out_unlock:
1763 mutex_unlock(&c->tnc_mutex);
1764 return err;
1765}
1766
1767/**
1768 * add_size - add znode size to partially calculated index size.
1769 * @c: UBIFS file-system description object
1770 * @znode: znode to add size for
1771 * @priv: partially calculated index size
1772 *
1773 * This is a helper function for 'dbg_check_idx_size()' which is called for
1774 * every indexing node and adds its size to the 'long long' variable pointed to
1775 * by @priv.
1776 */
1777static int add_size(struct ubifs_info *c, struct ubifs_znode *znode, void *priv)
1778{
1779 long long *idx_size = priv;
1780 int add;
1781
1782 add = ubifs_idx_node_sz(c, znode->child_cnt);
1783 add = ALIGN(add, 8);
1784 *idx_size += add;
1785 return 0;
1786}
1787
1788/**
1789 * dbg_check_idx_size - check index size.
1790 * @c: UBIFS file-system description object
1791 * @idx_size: size to check
1792 *
1793 * This function walks the UBIFS index, calculates its size and checks that the
1794 * size is equivalent to @idx_size. Returns zero in case of success and a
1795 * negative error code in case of failure.
1796 */
1797int dbg_check_idx_size(struct ubifs_info *c, long long idx_size)
1798{
1799 int err;
1800 long long calc = 0;
1801
Artem Bityutskiy8d7819b2011-06-03 08:53:35 +03001802 if (!dbg_is_chk_index(c))
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001803 return 0;
1804
1805 err = dbg_walk_index(c, NULL, add_size, &calc);
1806 if (err) {
1807 ubifs_err("error %d while walking the index", err);
1808 return err;
1809 }
1810
1811 if (calc != idx_size) {
1812 ubifs_err("index size check failed: calculated size is %lld, "
1813 "should be %lld", calc, idx_size);
1814 dump_stack();
1815 return -EINVAL;
1816 }
1817
1818 return 0;
1819}
1820
1821/**
1822 * struct fsck_inode - information about an inode used when checking the file-system.
1823 * @rb: link in the RB-tree of inodes
1824 * @inum: inode number
1825 * @mode: inode type, permissions, etc
1826 * @nlink: inode link count
1827 * @xattr_cnt: count of extended attributes
1828 * @references: how many directory/xattr entries refer this inode (calculated
1829 * while walking the index)
1830 * @calc_cnt: for directory inode count of child directories
1831 * @size: inode size (read from on-flash inode)
1832 * @xattr_sz: summary size of all extended attributes (read from on-flash
1833 * inode)
1834 * @calc_sz: for directories calculated directory size
1835 * @calc_xcnt: count of extended attributes
1836 * @calc_xsz: calculated summary size of all extended attributes
1837 * @xattr_nms: sum of lengths of all extended attribute names belonging to this
1838 * inode (read from on-flash inode)
1839 * @calc_xnms: calculated sum of lengths of all extended attribute names
1840 */
1841struct fsck_inode {
1842 struct rb_node rb;
1843 ino_t inum;
1844 umode_t mode;
1845 unsigned int nlink;
1846 unsigned int xattr_cnt;
1847 int references;
1848 int calc_cnt;
1849 long long size;
1850 unsigned int xattr_sz;
1851 long long calc_sz;
1852 long long calc_xcnt;
1853 long long calc_xsz;
1854 unsigned int xattr_nms;
1855 long long calc_xnms;
1856};
1857
1858/**
1859 * struct fsck_data - private FS checking information.
1860 * @inodes: RB-tree of all inodes (contains @struct fsck_inode objects)
1861 */
1862struct fsck_data {
1863 struct rb_root inodes;
1864};
1865
1866/**
1867 * add_inode - add inode information to RB-tree of inodes.
1868 * @c: UBIFS file-system description object
1869 * @fsckd: FS checking information
1870 * @ino: raw UBIFS inode to add
1871 *
1872 * This is a helper function for 'check_leaf()' which adds information about
1873 * inode @ino to the RB-tree of inodes. Returns inode information pointer in
1874 * case of success and a negative error code in case of failure.
1875 */
1876static struct fsck_inode *add_inode(struct ubifs_info *c,
1877 struct fsck_data *fsckd,
1878 struct ubifs_ino_node *ino)
1879{
1880 struct rb_node **p, *parent = NULL;
1881 struct fsck_inode *fscki;
1882 ino_t inum = key_inum_flash(c, &ino->key);
Artem Bityutskiy45cd5cd2011-05-02 22:34:39 +03001883 struct inode *inode;
1884 struct ubifs_inode *ui;
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001885
1886 p = &fsckd->inodes.rb_node;
1887 while (*p) {
1888 parent = *p;
1889 fscki = rb_entry(parent, struct fsck_inode, rb);
1890 if (inum < fscki->inum)
1891 p = &(*p)->rb_left;
1892 else if (inum > fscki->inum)
1893 p = &(*p)->rb_right;
1894 else
1895 return fscki;
1896 }
1897
1898 if (inum > c->highest_inum) {
1899 ubifs_err("too high inode number, max. is %lu",
Artem Bityutskiye84461a2008-10-29 12:08:43 +02001900 (unsigned long)c->highest_inum);
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001901 return ERR_PTR(-EINVAL);
1902 }
1903
1904 fscki = kzalloc(sizeof(struct fsck_inode), GFP_NOFS);
1905 if (!fscki)
1906 return ERR_PTR(-ENOMEM);
1907
Artem Bityutskiy45cd5cd2011-05-02 22:34:39 +03001908 inode = ilookup(c->vfs_sb, inum);
1909
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001910 fscki->inum = inum;
Artem Bityutskiy45cd5cd2011-05-02 22:34:39 +03001911 /*
1912 * If the inode is present in the VFS inode cache, use it instead of
1913 * the on-flash inode which might be out-of-date. E.g., the size might
1914 * be out-of-date. If we do not do this, the following may happen, for
1915 * example:
1916 * 1. A power cut happens
1917 * 2. We mount the file-system R/O, the replay process fixes up the
1918 * inode size in the VFS cache, but on on-flash.
1919 * 3. 'check_leaf()' fails because it hits a data node beyond inode
1920 * size.
1921 */
1922 if (!inode) {
1923 fscki->nlink = le32_to_cpu(ino->nlink);
1924 fscki->size = le64_to_cpu(ino->size);
1925 fscki->xattr_cnt = le32_to_cpu(ino->xattr_cnt);
1926 fscki->xattr_sz = le32_to_cpu(ino->xattr_size);
1927 fscki->xattr_nms = le32_to_cpu(ino->xattr_names);
1928 fscki->mode = le32_to_cpu(ino->mode);
1929 } else {
1930 ui = ubifs_inode(inode);
1931 fscki->nlink = inode->i_nlink;
1932 fscki->size = inode->i_size;
1933 fscki->xattr_cnt = ui->xattr_cnt;
1934 fscki->xattr_sz = ui->xattr_size;
1935 fscki->xattr_nms = ui->xattr_names;
1936 fscki->mode = inode->i_mode;
1937 iput(inode);
1938 }
1939
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001940 if (S_ISDIR(fscki->mode)) {
1941 fscki->calc_sz = UBIFS_INO_NODE_SZ;
1942 fscki->calc_cnt = 2;
1943 }
Artem Bityutskiy45cd5cd2011-05-02 22:34:39 +03001944
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001945 rb_link_node(&fscki->rb, parent, p);
1946 rb_insert_color(&fscki->rb, &fsckd->inodes);
Artem Bityutskiy45cd5cd2011-05-02 22:34:39 +03001947
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001948 return fscki;
1949}
1950
1951/**
1952 * search_inode - search inode in the RB-tree of inodes.
1953 * @fsckd: FS checking information
1954 * @inum: inode number to search
1955 *
1956 * This is a helper function for 'check_leaf()' which searches inode @inum in
1957 * the RB-tree of inodes and returns an inode information pointer or %NULL if
1958 * the inode was not found.
1959 */
1960static struct fsck_inode *search_inode(struct fsck_data *fsckd, ino_t inum)
1961{
1962 struct rb_node *p;
1963 struct fsck_inode *fscki;
1964
1965 p = fsckd->inodes.rb_node;
1966 while (p) {
1967 fscki = rb_entry(p, struct fsck_inode, rb);
1968 if (inum < fscki->inum)
1969 p = p->rb_left;
1970 else if (inum > fscki->inum)
1971 p = p->rb_right;
1972 else
1973 return fscki;
1974 }
1975 return NULL;
1976}
1977
1978/**
1979 * read_add_inode - read inode node and add it to RB-tree of inodes.
1980 * @c: UBIFS file-system description object
1981 * @fsckd: FS checking information
1982 * @inum: inode number to read
1983 *
1984 * This is a helper function for 'check_leaf()' which finds inode node @inum in
1985 * the index, reads it, and adds it to the RB-tree of inodes. Returns inode
1986 * information pointer in case of success and a negative error code in case of
1987 * failure.
1988 */
1989static struct fsck_inode *read_add_inode(struct ubifs_info *c,
1990 struct fsck_data *fsckd, ino_t inum)
1991{
1992 int n, err;
1993 union ubifs_key key;
1994 struct ubifs_znode *znode;
1995 struct ubifs_zbranch *zbr;
1996 struct ubifs_ino_node *ino;
1997 struct fsck_inode *fscki;
1998
1999 fscki = search_inode(fsckd, inum);
2000 if (fscki)
2001 return fscki;
2002
2003 ino_key_init(c, &key, inum);
2004 err = ubifs_lookup_level0(c, &key, &znode, &n);
2005 if (!err) {
Artem Bityutskiye84461a2008-10-29 12:08:43 +02002006 ubifs_err("inode %lu not found in index", (unsigned long)inum);
Artem Bityutskiy1e517642008-07-14 19:08:37 +03002007 return ERR_PTR(-ENOENT);
2008 } else if (err < 0) {
Artem Bityutskiye84461a2008-10-29 12:08:43 +02002009 ubifs_err("error %d while looking up inode %lu",
2010 err, (unsigned long)inum);
Artem Bityutskiy1e517642008-07-14 19:08:37 +03002011 return ERR_PTR(err);
2012 }
2013
2014 zbr = &znode->zbranch[n];
2015 if (zbr->len < UBIFS_INO_NODE_SZ) {
Artem Bityutskiye84461a2008-10-29 12:08:43 +02002016 ubifs_err("bad node %lu node length %d",
2017 (unsigned long)inum, zbr->len);
Artem Bityutskiy1e517642008-07-14 19:08:37 +03002018 return ERR_PTR(-EINVAL);
2019 }
2020
2021 ino = kmalloc(zbr->len, GFP_NOFS);
2022 if (!ino)
2023 return ERR_PTR(-ENOMEM);
2024
2025 err = ubifs_tnc_read_node(c, zbr, ino);
2026 if (err) {
2027 ubifs_err("cannot read inode node at LEB %d:%d, error %d",
2028 zbr->lnum, zbr->offs, err);
2029 kfree(ino);
2030 return ERR_PTR(err);
2031 }
2032
2033 fscki = add_inode(c, fsckd, ino);
2034 kfree(ino);
2035 if (IS_ERR(fscki)) {
2036 ubifs_err("error %ld while adding inode %lu node",
Artem Bityutskiye84461a2008-10-29 12:08:43 +02002037 PTR_ERR(fscki), (unsigned long)inum);
Artem Bityutskiy1e517642008-07-14 19:08:37 +03002038 return fscki;
2039 }
2040
2041 return fscki;
2042}
2043
2044/**
2045 * check_leaf - check leaf node.
2046 * @c: UBIFS file-system description object
2047 * @zbr: zbranch of the leaf node to check
2048 * @priv: FS checking information
2049 *
2050 * This is a helper function for 'dbg_check_filesystem()' which is called for
2051 * every single leaf node while walking the indexing tree. It checks that the
2052 * leaf node referred from the indexing tree exists, has correct CRC, and does
2053 * some other basic validation. This function is also responsible for building
2054 * an RB-tree of inodes - it adds all inodes into the RB-tree. It also
2055 * calculates reference count, size, etc for each inode in order to later
2056 * compare them to the information stored inside the inodes and detect possible
2057 * inconsistencies. Returns zero in case of success and a negative error code
2058 * in case of failure.
2059 */
2060static int check_leaf(struct ubifs_info *c, struct ubifs_zbranch *zbr,
2061 void *priv)
2062{
2063 ino_t inum;
2064 void *node;
2065 struct ubifs_ch *ch;
2066 int err, type = key_type(c, &zbr->key);
2067 struct fsck_inode *fscki;
2068
2069 if (zbr->len < UBIFS_CH_SZ) {
2070 ubifs_err("bad leaf length %d (LEB %d:%d)",
2071 zbr->len, zbr->lnum, zbr->offs);
2072 return -EINVAL;
2073 }
2074
2075 node = kmalloc(zbr->len, GFP_NOFS);
2076 if (!node)
2077 return -ENOMEM;
2078
2079 err = ubifs_tnc_read_node(c, zbr, node);
2080 if (err) {
2081 ubifs_err("cannot read leaf node at LEB %d:%d, error %d",
2082 zbr->lnum, zbr->offs, err);
2083 goto out_free;
2084 }
2085
2086 /* If this is an inode node, add it to RB-tree of inodes */
2087 if (type == UBIFS_INO_KEY) {
2088 fscki = add_inode(c, priv, node);
2089 if (IS_ERR(fscki)) {
2090 err = PTR_ERR(fscki);
2091 ubifs_err("error %d while adding inode node", err);
2092 goto out_dump;
2093 }
2094 goto out;
2095 }
2096
2097 if (type != UBIFS_DENT_KEY && type != UBIFS_XENT_KEY &&
2098 type != UBIFS_DATA_KEY) {
2099 ubifs_err("unexpected node type %d at LEB %d:%d",
2100 type, zbr->lnum, zbr->offs);
2101 err = -EINVAL;
2102 goto out_free;
2103 }
2104
2105 ch = node;
2106 if (le64_to_cpu(ch->sqnum) > c->max_sqnum) {
2107 ubifs_err("too high sequence number, max. is %llu",
2108 c->max_sqnum);
2109 err = -EINVAL;
2110 goto out_dump;
2111 }
2112
2113 if (type == UBIFS_DATA_KEY) {
2114 long long blk_offs;
2115 struct ubifs_data_node *dn = node;
2116
2117 /*
2118 * Search the inode node this data node belongs to and insert
2119 * it to the RB-tree of inodes.
2120 */
2121 inum = key_inum_flash(c, &dn->key);
2122 fscki = read_add_inode(c, priv, inum);
2123 if (IS_ERR(fscki)) {
2124 err = PTR_ERR(fscki);
2125 ubifs_err("error %d while processing data node and "
Artem Bityutskiye84461a2008-10-29 12:08:43 +02002126 "trying to find inode node %lu",
2127 err, (unsigned long)inum);
Artem Bityutskiy1e517642008-07-14 19:08:37 +03002128 goto out_dump;
2129 }
2130
2131 /* Make sure the data node is within inode size */
2132 blk_offs = key_block_flash(c, &dn->key);
2133 blk_offs <<= UBIFS_BLOCK_SHIFT;
2134 blk_offs += le32_to_cpu(dn->size);
2135 if (blk_offs > fscki->size) {
2136 ubifs_err("data node at LEB %d:%d is not within inode "
2137 "size %lld", zbr->lnum, zbr->offs,
2138 fscki->size);
2139 err = -EINVAL;
2140 goto out_dump;
2141 }
2142 } else {
2143 int nlen;
2144 struct ubifs_dent_node *dent = node;
2145 struct fsck_inode *fscki1;
2146
2147 err = ubifs_validate_entry(c, dent);
2148 if (err)
2149 goto out_dump;
2150
2151 /*
2152 * Search the inode node this entry refers to and the parent
2153 * inode node and insert them to the RB-tree of inodes.
2154 */
2155 inum = le64_to_cpu(dent->inum);
2156 fscki = read_add_inode(c, priv, inum);
2157 if (IS_ERR(fscki)) {
2158 err = PTR_ERR(fscki);
2159 ubifs_err("error %d while processing entry node and "
Artem Bityutskiye84461a2008-10-29 12:08:43 +02002160 "trying to find inode node %lu",
2161 err, (unsigned long)inum);
Artem Bityutskiy1e517642008-07-14 19:08:37 +03002162 goto out_dump;
2163 }
2164
2165 /* Count how many direntries or xentries refers this inode */
2166 fscki->references += 1;
2167
2168 inum = key_inum_flash(c, &dent->key);
2169 fscki1 = read_add_inode(c, priv, inum);
2170 if (IS_ERR(fscki1)) {
Roel Kluinb38882f2009-12-07 14:21:45 +01002171 err = PTR_ERR(fscki1);
Artem Bityutskiy1e517642008-07-14 19:08:37 +03002172 ubifs_err("error %d while processing entry node and "
2173 "trying to find parent inode node %lu",
Artem Bityutskiye84461a2008-10-29 12:08:43 +02002174 err, (unsigned long)inum);
Artem Bityutskiy1e517642008-07-14 19:08:37 +03002175 goto out_dump;
2176 }
2177
2178 nlen = le16_to_cpu(dent->nlen);
2179 if (type == UBIFS_XENT_KEY) {
2180 fscki1->calc_xcnt += 1;
2181 fscki1->calc_xsz += CALC_DENT_SIZE(nlen);
2182 fscki1->calc_xsz += CALC_XATTR_BYTES(fscki->size);
2183 fscki1->calc_xnms += nlen;
2184 } else {
2185 fscki1->calc_sz += CALC_DENT_SIZE(nlen);
2186 if (dent->type == UBIFS_ITYPE_DIR)
2187 fscki1->calc_cnt += 1;
2188 }
2189 }
2190
2191out:
2192 kfree(node);
2193 return 0;
2194
2195out_dump:
2196 ubifs_msg("dump of node at LEB %d:%d", zbr->lnum, zbr->offs);
2197 dbg_dump_node(c, node);
2198out_free:
2199 kfree(node);
2200 return err;
2201}
2202
2203/**
2204 * free_inodes - free RB-tree of inodes.
2205 * @fsckd: FS checking information
2206 */
2207static void free_inodes(struct fsck_data *fsckd)
2208{
2209 struct rb_node *this = fsckd->inodes.rb_node;
2210 struct fsck_inode *fscki;
2211
2212 while (this) {
2213 if (this->rb_left)
2214 this = this->rb_left;
2215 else if (this->rb_right)
2216 this = this->rb_right;
2217 else {
2218 fscki = rb_entry(this, struct fsck_inode, rb);
2219 this = rb_parent(this);
2220 if (this) {
2221 if (this->rb_left == &fscki->rb)
2222 this->rb_left = NULL;
2223 else
2224 this->rb_right = NULL;
2225 }
2226 kfree(fscki);
2227 }
2228 }
2229}
2230
2231/**
2232 * check_inodes - checks all inodes.
2233 * @c: UBIFS file-system description object
2234 * @fsckd: FS checking information
2235 *
2236 * This is a helper function for 'dbg_check_filesystem()' which walks the
2237 * RB-tree of inodes after the index scan has been finished, and checks that
2238 * inode nlink, size, etc are correct. Returns zero if inodes are fine,
2239 * %-EINVAL if not, and a negative error code in case of failure.
2240 */
2241static int check_inodes(struct ubifs_info *c, struct fsck_data *fsckd)
2242{
2243 int n, err;
2244 union ubifs_key key;
2245 struct ubifs_znode *znode;
2246 struct ubifs_zbranch *zbr;
2247 struct ubifs_ino_node *ino;
2248 struct fsck_inode *fscki;
2249 struct rb_node *this = rb_first(&fsckd->inodes);
2250
2251 while (this) {
2252 fscki = rb_entry(this, struct fsck_inode, rb);
2253 this = rb_next(this);
2254
2255 if (S_ISDIR(fscki->mode)) {
2256 /*
2257 * Directories have to have exactly one reference (they
2258 * cannot have hardlinks), although root inode is an
2259 * exception.
2260 */
2261 if (fscki->inum != UBIFS_ROOT_INO &&
2262 fscki->references != 1) {
2263 ubifs_err("directory inode %lu has %d "
2264 "direntries which refer it, but "
Artem Bityutskiye84461a2008-10-29 12:08:43 +02002265 "should be 1",
2266 (unsigned long)fscki->inum,
Artem Bityutskiy1e517642008-07-14 19:08:37 +03002267 fscki->references);
2268 goto out_dump;
2269 }
2270 if (fscki->inum == UBIFS_ROOT_INO &&
2271 fscki->references != 0) {
2272 ubifs_err("root inode %lu has non-zero (%d) "
2273 "direntries which refer it",
Artem Bityutskiye84461a2008-10-29 12:08:43 +02002274 (unsigned long)fscki->inum,
2275 fscki->references);
Artem Bityutskiy1e517642008-07-14 19:08:37 +03002276 goto out_dump;
2277 }
2278 if (fscki->calc_sz != fscki->size) {
2279 ubifs_err("directory inode %lu size is %lld, "
2280 "but calculated size is %lld",
Artem Bityutskiye84461a2008-10-29 12:08:43 +02002281 (unsigned long)fscki->inum,
2282 fscki->size, fscki->calc_sz);
Artem Bityutskiy1e517642008-07-14 19:08:37 +03002283 goto out_dump;
2284 }
2285 if (fscki->calc_cnt != fscki->nlink) {
2286 ubifs_err("directory inode %lu nlink is %d, "
2287 "but calculated nlink is %d",
Artem Bityutskiye84461a2008-10-29 12:08:43 +02002288 (unsigned long)fscki->inum,
2289 fscki->nlink, fscki->calc_cnt);
Artem Bityutskiy1e517642008-07-14 19:08:37 +03002290 goto out_dump;
2291 }
2292 } else {
2293 if (fscki->references != fscki->nlink) {
2294 ubifs_err("inode %lu nlink is %d, but "
Artem Bityutskiye84461a2008-10-29 12:08:43 +02002295 "calculated nlink is %d",
2296 (unsigned long)fscki->inum,
Artem Bityutskiy1e517642008-07-14 19:08:37 +03002297 fscki->nlink, fscki->references);
2298 goto out_dump;
2299 }
2300 }
2301 if (fscki->xattr_sz != fscki->calc_xsz) {
2302 ubifs_err("inode %lu has xattr size %u, but "
2303 "calculated size is %lld",
Artem Bityutskiye84461a2008-10-29 12:08:43 +02002304 (unsigned long)fscki->inum, fscki->xattr_sz,
Artem Bityutskiy1e517642008-07-14 19:08:37 +03002305 fscki->calc_xsz);
2306 goto out_dump;
2307 }
2308 if (fscki->xattr_cnt != fscki->calc_xcnt) {
2309 ubifs_err("inode %lu has %u xattrs, but "
Artem Bityutskiye84461a2008-10-29 12:08:43 +02002310 "calculated count is %lld",
2311 (unsigned long)fscki->inum,
Artem Bityutskiy1e517642008-07-14 19:08:37 +03002312 fscki->xattr_cnt, fscki->calc_xcnt);
2313 goto out_dump;
2314 }
2315 if (fscki->xattr_nms != fscki->calc_xnms) {
2316 ubifs_err("inode %lu has xattr names' size %u, but "
2317 "calculated names' size is %lld",
Artem Bityutskiye84461a2008-10-29 12:08:43 +02002318 (unsigned long)fscki->inum, fscki->xattr_nms,
Artem Bityutskiy1e517642008-07-14 19:08:37 +03002319 fscki->calc_xnms);
2320 goto out_dump;
2321 }
2322 }
2323
2324 return 0;
2325
2326out_dump:
2327 /* Read the bad inode and dump it */
2328 ino_key_init(c, &key, fscki->inum);
2329 err = ubifs_lookup_level0(c, &key, &znode, &n);
2330 if (!err) {
Artem Bityutskiye84461a2008-10-29 12:08:43 +02002331 ubifs_err("inode %lu not found in index",
2332 (unsigned long)fscki->inum);
Artem Bityutskiy1e517642008-07-14 19:08:37 +03002333 return -ENOENT;
2334 } else if (err < 0) {
2335 ubifs_err("error %d while looking up inode %lu",
Artem Bityutskiye84461a2008-10-29 12:08:43 +02002336 err, (unsigned long)fscki->inum);
Artem Bityutskiy1e517642008-07-14 19:08:37 +03002337 return err;
2338 }
2339
2340 zbr = &znode->zbranch[n];
2341 ino = kmalloc(zbr->len, GFP_NOFS);
2342 if (!ino)
2343 return -ENOMEM;
2344
2345 err = ubifs_tnc_read_node(c, zbr, ino);
2346 if (err) {
2347 ubifs_err("cannot read inode node at LEB %d:%d, error %d",
2348 zbr->lnum, zbr->offs, err);
2349 kfree(ino);
2350 return err;
2351 }
2352
2353 ubifs_msg("dump of the inode %lu sitting in LEB %d:%d",
Artem Bityutskiye84461a2008-10-29 12:08:43 +02002354 (unsigned long)fscki->inum, zbr->lnum, zbr->offs);
Artem Bityutskiy1e517642008-07-14 19:08:37 +03002355 dbg_dump_node(c, ino);
2356 kfree(ino);
2357 return -EINVAL;
2358}
2359
2360/**
2361 * dbg_check_filesystem - check the file-system.
2362 * @c: UBIFS file-system description object
2363 *
2364 * This function checks the file system, namely:
2365 * o makes sure that all leaf nodes exist and their CRCs are correct;
2366 * o makes sure inode nlink, size, xattr size/count are correct (for all
2367 * inodes).
2368 *
2369 * The function reads whole indexing tree and all nodes, so it is pretty
2370 * heavy-weight. Returns zero if the file-system is consistent, %-EINVAL if
2371 * not, and a negative error code in case of failure.
2372 */
2373int dbg_check_filesystem(struct ubifs_info *c)
2374{
2375 int err;
2376 struct fsck_data fsckd;
2377
Artem Bityutskiy2b1844a2011-06-03 08:31:29 +03002378 if (!dbg_is_chk_fs(c))
Artem Bityutskiy1e517642008-07-14 19:08:37 +03002379 return 0;
2380
2381 fsckd.inodes = RB_ROOT;
2382 err = dbg_walk_index(c, check_leaf, NULL, &fsckd);
2383 if (err)
2384 goto out_free;
2385
2386 err = check_inodes(c, &fsckd);
2387 if (err)
2388 goto out_free;
2389
2390 free_inodes(&fsckd);
2391 return 0;
2392
2393out_free:
2394 ubifs_err("file-system check failed with error %d", err);
2395 dump_stack();
2396 free_inodes(&fsckd);
2397 return err;
2398}
2399
Artem Bityutskiy3bb66b42010-08-07 10:06:11 +03002400/**
2401 * dbg_check_data_nodes_order - check that list of data nodes is sorted.
2402 * @c: UBIFS file-system description object
2403 * @head: the list of nodes ('struct ubifs_scan_node' objects)
2404 *
2405 * This function returns zero if the list of data nodes is sorted correctly,
2406 * and %-EINVAL if not.
2407 */
2408int dbg_check_data_nodes_order(struct ubifs_info *c, struct list_head *head)
2409{
2410 struct list_head *cur;
2411 struct ubifs_scan_node *sa, *sb;
2412
Artem Bityutskiy2b1844a2011-06-03 08:31:29 +03002413 if (!dbg_is_chk_gen(c))
Artem Bityutskiy3bb66b42010-08-07 10:06:11 +03002414 return 0;
2415
2416 for (cur = head->next; cur->next != head; cur = cur->next) {
2417 ino_t inuma, inumb;
2418 uint32_t blka, blkb;
2419
2420 cond_resched();
2421 sa = container_of(cur, struct ubifs_scan_node, list);
2422 sb = container_of(cur->next, struct ubifs_scan_node, list);
2423
2424 if (sa->type != UBIFS_DATA_NODE) {
2425 ubifs_err("bad node type %d", sa->type);
2426 dbg_dump_node(c, sa->node);
2427 return -EINVAL;
2428 }
2429 if (sb->type != UBIFS_DATA_NODE) {
2430 ubifs_err("bad node type %d", sb->type);
2431 dbg_dump_node(c, sb->node);
2432 return -EINVAL;
2433 }
2434
2435 inuma = key_inum(c, &sa->key);
2436 inumb = key_inum(c, &sb->key);
2437
2438 if (inuma < inumb)
2439 continue;
2440 if (inuma > inumb) {
2441 ubifs_err("larger inum %lu goes before inum %lu",
2442 (unsigned long)inuma, (unsigned long)inumb);
2443 goto error_dump;
2444 }
2445
2446 blka = key_block(c, &sa->key);
2447 blkb = key_block(c, &sb->key);
2448
2449 if (blka > blkb) {
2450 ubifs_err("larger block %u goes before %u", blka, blkb);
2451 goto error_dump;
2452 }
2453 if (blka == blkb) {
2454 ubifs_err("two data nodes for the same block");
2455 goto error_dump;
2456 }
2457 }
2458
2459 return 0;
2460
2461error_dump:
2462 dbg_dump_node(c, sa->node);
2463 dbg_dump_node(c, sb->node);
2464 return -EINVAL;
2465}
2466
2467/**
2468 * dbg_check_nondata_nodes_order - check that list of data nodes is sorted.
2469 * @c: UBIFS file-system description object
2470 * @head: the list of nodes ('struct ubifs_scan_node' objects)
2471 *
2472 * This function returns zero if the list of non-data nodes is sorted correctly,
2473 * and %-EINVAL if not.
2474 */
2475int dbg_check_nondata_nodes_order(struct ubifs_info *c, struct list_head *head)
2476{
2477 struct list_head *cur;
2478 struct ubifs_scan_node *sa, *sb;
2479
Artem Bityutskiy2b1844a2011-06-03 08:31:29 +03002480 if (!dbg_is_chk_gen(c))
Artem Bityutskiy3bb66b42010-08-07 10:06:11 +03002481 return 0;
2482
2483 for (cur = head->next; cur->next != head; cur = cur->next) {
2484 ino_t inuma, inumb;
2485 uint32_t hasha, hashb;
2486
2487 cond_resched();
2488 sa = container_of(cur, struct ubifs_scan_node, list);
2489 sb = container_of(cur->next, struct ubifs_scan_node, list);
2490
2491 if (sa->type != UBIFS_INO_NODE && sa->type != UBIFS_DENT_NODE &&
2492 sa->type != UBIFS_XENT_NODE) {
2493 ubifs_err("bad node type %d", sa->type);
2494 dbg_dump_node(c, sa->node);
2495 return -EINVAL;
2496 }
2497 if (sa->type != UBIFS_INO_NODE && sa->type != UBIFS_DENT_NODE &&
2498 sa->type != UBIFS_XENT_NODE) {
2499 ubifs_err("bad node type %d", sb->type);
2500 dbg_dump_node(c, sb->node);
2501 return -EINVAL;
2502 }
2503
2504 if (sa->type != UBIFS_INO_NODE && sb->type == UBIFS_INO_NODE) {
2505 ubifs_err("non-inode node goes before inode node");
2506 goto error_dump;
2507 }
2508
2509 if (sa->type == UBIFS_INO_NODE && sb->type != UBIFS_INO_NODE)
2510 continue;
2511
2512 if (sa->type == UBIFS_INO_NODE && sb->type == UBIFS_INO_NODE) {
2513 /* Inode nodes are sorted in descending size order */
2514 if (sa->len < sb->len) {
2515 ubifs_err("smaller inode node goes first");
2516 goto error_dump;
2517 }
2518 continue;
2519 }
2520
2521 /*
2522 * This is either a dentry or xentry, which should be sorted in
2523 * ascending (parent ino, hash) order.
2524 */
2525 inuma = key_inum(c, &sa->key);
2526 inumb = key_inum(c, &sb->key);
2527
2528 if (inuma < inumb)
2529 continue;
2530 if (inuma > inumb) {
2531 ubifs_err("larger inum %lu goes before inum %lu",
2532 (unsigned long)inuma, (unsigned long)inumb);
2533 goto error_dump;
2534 }
2535
2536 hasha = key_block(c, &sa->key);
2537 hashb = key_block(c, &sb->key);
2538
2539 if (hasha > hashb) {
Artem Bityutskiyc4361572011-03-25 15:27:40 +02002540 ubifs_err("larger hash %u goes before %u",
2541 hasha, hashb);
Artem Bityutskiy3bb66b42010-08-07 10:06:11 +03002542 goto error_dump;
2543 }
2544 }
2545
2546 return 0;
2547
2548error_dump:
2549 ubifs_msg("dumping first node");
2550 dbg_dump_node(c, sa->node);
2551 ubifs_msg("dumping second node");
2552 dbg_dump_node(c, sb->node);
2553 return -EINVAL;
2554 return 0;
2555}
2556
Artem Bityutskiya7fa94a2011-06-03 16:20:03 +03002557static inline int chance(unsigned int n, unsigned int out_of)
Artem Bityutskiy1e517642008-07-14 19:08:37 +03002558{
Artem Bityutskiya7fa94a2011-06-03 16:20:03 +03002559 return !!((random32() % out_of) + 1 <= n);
2560
Artem Bityutskiy1e517642008-07-14 19:08:37 +03002561}
2562
Artem Bityutskiyd27462a2011-06-03 15:10:33 +03002563static int power_cut_emulated(struct ubifs_info *c, int lnum, int write)
Artem Bityutskiy1e517642008-07-14 19:08:37 +03002564{
Artem Bityutskiyf57cb182011-06-03 14:51:41 +03002565 struct ubifs_debug_info *d = c->dbg;
Artem Bityutskiy1e517642008-07-14 19:08:37 +03002566
Artem Bityutskiyf57cb182011-06-03 14:51:41 +03002567 ubifs_assert(dbg_is_tst_rcvry(c));
Artem Bityutskiy1e517642008-07-14 19:08:37 +03002568
Artem Bityutskiyd27462a2011-06-03 15:10:33 +03002569 if (!d->pc_cnt) {
2570 /* First call - decide delay to the power cut */
Artem Bityutskiy1e517642008-07-14 19:08:37 +03002571 if (chance(1, 2)) {
Artem Bityutskiya7fa94a2011-06-03 16:20:03 +03002572 unsigned long delay;
Artem Bityutskiy1e517642008-07-14 19:08:37 +03002573
2574 if (chance(1, 2)) {
Artem Bityutskiyd27462a2011-06-03 15:10:33 +03002575 d->pc_delay = 1;
Artem Bityutskiya7fa94a2011-06-03 16:20:03 +03002576 /* Fail withing 1 minute */
2577 delay = random32() % 60000;
2578 d->pc_timeout = jiffies;
2579 d->pc_timeout += msecs_to_jiffies(delay);
2580 ubifs_warn("failing after %lums", delay);
Artem Bityutskiy1e517642008-07-14 19:08:37 +03002581 } else {
Artem Bityutskiyd27462a2011-06-03 15:10:33 +03002582 d->pc_delay = 2;
Artem Bityutskiya7fa94a2011-06-03 16:20:03 +03002583 delay = random32() % 10000;
2584 /* Fail within 10000 operations */
Artem Bityutskiyd27462a2011-06-03 15:10:33 +03002585 d->pc_cnt_max = delay;
Artem Bityutskiya7fa94a2011-06-03 16:20:03 +03002586 ubifs_warn("failing after %lu calls", delay);
Artem Bityutskiy1e517642008-07-14 19:08:37 +03002587 }
2588 }
Artem Bityutskiya7fa94a2011-06-03 16:20:03 +03002589
Artem Bityutskiyd27462a2011-06-03 15:10:33 +03002590 d->pc_cnt += 1;
Artem Bityutskiy1e517642008-07-14 19:08:37 +03002591 }
Artem Bityutskiya7fa94a2011-06-03 16:20:03 +03002592
Artem Bityutskiy1e517642008-07-14 19:08:37 +03002593 /* Determine if failure delay has expired */
Artem Bityutskiya7fa94a2011-06-03 16:20:03 +03002594 if (d->pc_delay == 1 && time_before(jiffies, d->pc_timeout))
Artem Bityutskiy1e517642008-07-14 19:08:37 +03002595 return 0;
Artem Bityutskiya7fa94a2011-06-03 16:20:03 +03002596 if (d->pc_delay == 2 && d->pc_cnt++ < d->pc_cnt_max)
Artem Bityutskiy1e517642008-07-14 19:08:37 +03002597 return 0;
Artem Bityutskiya7fa94a2011-06-03 16:20:03 +03002598
Artem Bityutskiy1e517642008-07-14 19:08:37 +03002599 if (lnum == UBIFS_SB_LNUM) {
Artem Bityutskiya7fa94a2011-06-03 16:20:03 +03002600 if (write && chance(1, 2))
2601 return 0;
2602 if (chance(19, 20))
Artem Bityutskiy1e517642008-07-14 19:08:37 +03002603 return 0;
Artem Bityutskiy24a4f802011-06-01 15:23:25 +03002604 ubifs_warn("failing in super block LEB %d", lnum);
Artem Bityutskiy1e517642008-07-14 19:08:37 +03002605 } else if (lnum == UBIFS_MST_LNUM || lnum == UBIFS_MST_LNUM + 1) {
2606 if (chance(19, 20))
2607 return 0;
Artem Bityutskiy24a4f802011-06-01 15:23:25 +03002608 ubifs_warn("failing in master LEB %d", lnum);
Artem Bityutskiy1e517642008-07-14 19:08:37 +03002609 } else if (lnum >= UBIFS_LOG_LNUM && lnum <= c->log_last) {
Artem Bityutskiya7fa94a2011-06-03 16:20:03 +03002610 if (write && chance(99, 100))
2611 return 0;
2612 if (chance(399, 400))
Artem Bityutskiy1e517642008-07-14 19:08:37 +03002613 return 0;
Artem Bityutskiy24a4f802011-06-01 15:23:25 +03002614 ubifs_warn("failing in log LEB %d", lnum);
Artem Bityutskiy1e517642008-07-14 19:08:37 +03002615 } else if (lnum >= c->lpt_first && lnum <= c->lpt_last) {
Artem Bityutskiya7fa94a2011-06-03 16:20:03 +03002616 if (write && chance(7, 8))
2617 return 0;
2618 if (chance(19, 20))
Artem Bityutskiy1e517642008-07-14 19:08:37 +03002619 return 0;
Artem Bityutskiy24a4f802011-06-01 15:23:25 +03002620 ubifs_warn("failing in LPT LEB %d", lnum);
Artem Bityutskiy1e517642008-07-14 19:08:37 +03002621 } else if (lnum >= c->orph_first && lnum <= c->orph_last) {
Artem Bityutskiya7fa94a2011-06-03 16:20:03 +03002622 if (write && chance(1, 2))
2623 return 0;
2624 if (chance(9, 10))
Artem Bityutskiy1e517642008-07-14 19:08:37 +03002625 return 0;
Artem Bityutskiy24a4f802011-06-01 15:23:25 +03002626 ubifs_warn("failing in orphan LEB %d", lnum);
Artem Bityutskiy1e517642008-07-14 19:08:37 +03002627 } else if (lnum == c->ihead_lnum) {
2628 if (chance(99, 100))
2629 return 0;
Artem Bityutskiy24a4f802011-06-01 15:23:25 +03002630 ubifs_warn("failing in index head LEB %d", lnum);
Artem Bityutskiy1e517642008-07-14 19:08:37 +03002631 } else if (c->jheads && lnum == c->jheads[GCHD].wbuf.lnum) {
2632 if (chance(9, 10))
2633 return 0;
Artem Bityutskiy24a4f802011-06-01 15:23:25 +03002634 ubifs_warn("failing in GC head LEB %d", lnum);
Artem Bityutskiy1e517642008-07-14 19:08:37 +03002635 } else if (write && !RB_EMPTY_ROOT(&c->buds) &&
2636 !ubifs_search_bud(c, lnum)) {
2637 if (chance(19, 20))
2638 return 0;
Artem Bityutskiy24a4f802011-06-01 15:23:25 +03002639 ubifs_warn("failing in non-bud LEB %d", lnum);
Artem Bityutskiy1e517642008-07-14 19:08:37 +03002640 } else if (c->cmt_state == COMMIT_RUNNING_BACKGROUND ||
2641 c->cmt_state == COMMIT_RUNNING_REQUIRED) {
2642 if (chance(999, 1000))
2643 return 0;
Artem Bityutskiy24a4f802011-06-01 15:23:25 +03002644 ubifs_warn("failing in bud LEB %d commit running", lnum);
Artem Bityutskiy1e517642008-07-14 19:08:37 +03002645 } else {
2646 if (chance(9999, 10000))
2647 return 0;
Artem Bityutskiy24a4f802011-06-01 15:23:25 +03002648 ubifs_warn("failing in bud LEB %d commit not running", lnum);
Artem Bityutskiy1e517642008-07-14 19:08:37 +03002649 }
Artem Bityutskiy24a4f802011-06-01 15:23:25 +03002650
Artem Bityutskiyd27462a2011-06-03 15:10:33 +03002651 d->pc_happened = 1;
Artem Bityutskiya7fa94a2011-06-03 16:20:03 +03002652 ubifs_warn("========== Power cut emulated ==========");
Artem Bityutskiy1e517642008-07-14 19:08:37 +03002653 dump_stack();
2654 return 1;
2655}
2656
Artem Bityutskiya7fa94a2011-06-03 16:20:03 +03002657static void cut_data(const void *buf, unsigned int len)
Artem Bityutskiy1e517642008-07-14 19:08:37 +03002658{
Artem Bityutskiya7fa94a2011-06-03 16:20:03 +03002659 unsigned int from, to, i, ffs = chance(1, 2);
Artem Bityutskiy1e517642008-07-14 19:08:37 +03002660 unsigned char *p = (void *)buf;
2661
Artem Bityutskiya7fa94a2011-06-03 16:20:03 +03002662 from = random32() % (len + 1);
2663 if (chance(1, 2))
2664 to = random32() % (len - from + 1);
2665 else
2666 to = len;
2667
2668 if (from < to)
2669 ubifs_warn("filled bytes %u-%u with %s", from, to - 1,
2670 ffs ? "0xFFs" : "random data");
2671
2672 if (ffs)
2673 for (i = from; i < to; i++)
2674 p[i] = 0xFF;
2675 else
2676 for (i = from; i < to; i++)
2677 p[i] = random32() % 0x100;
Artem Bityutskiy1e517642008-07-14 19:08:37 +03002678}
2679
Artem Bityutskiyf57cb182011-06-03 14:51:41 +03002680int dbg_leb_write(struct ubifs_info *c, int lnum, const void *buf,
Artem Bityutskiy891a54a2011-06-03 11:32:21 +03002681 int offs, int len, int dtype)
Artem Bityutskiy1e517642008-07-14 19:08:37 +03002682{
Adrian Hunter16dfd802008-07-18 16:47:41 +03002683 int err, failing;
Artem Bityutskiy1e517642008-07-14 19:08:37 +03002684
Artem Bityutskiyd27462a2011-06-03 15:10:33 +03002685 if (c->dbg->pc_happened)
Artem Bityutskiy1a29af82011-04-20 17:06:17 +03002686 return -EROFS;
Artem Bityutskiyd27462a2011-06-03 15:10:33 +03002687
2688 failing = power_cut_emulated(c, lnum, 1);
Adrian Hunter16dfd802008-07-18 16:47:41 +03002689 if (failing)
Artem Bityutskiy1e517642008-07-14 19:08:37 +03002690 cut_data(buf, len);
Artem Bityutskiyf57cb182011-06-03 14:51:41 +03002691 err = ubi_leb_write(c->ubi, lnum, buf, offs, len, dtype);
Artem Bityutskiy1e517642008-07-14 19:08:37 +03002692 if (err)
2693 return err;
Adrian Hunter16dfd802008-07-18 16:47:41 +03002694 if (failing)
Artem Bityutskiy1a29af82011-04-20 17:06:17 +03002695 return -EROFS;
Artem Bityutskiy1e517642008-07-14 19:08:37 +03002696 return 0;
2697}
2698
Artem Bityutskiyf57cb182011-06-03 14:51:41 +03002699int dbg_leb_change(struct ubifs_info *c, int lnum, const void *buf,
Artem Bityutskiy1e517642008-07-14 19:08:37 +03002700 int len, int dtype)
2701{
2702 int err;
2703
Artem Bityutskiyd27462a2011-06-03 15:10:33 +03002704 if (c->dbg->pc_happened)
2705 return -EROFS;
2706 if (power_cut_emulated(c, lnum, 1))
Artem Bityutskiy1a29af82011-04-20 17:06:17 +03002707 return -EROFS;
Artem Bityutskiyf57cb182011-06-03 14:51:41 +03002708 err = ubi_leb_change(c->ubi, lnum, buf, len, dtype);
Artem Bityutskiy1e517642008-07-14 19:08:37 +03002709 if (err)
2710 return err;
Artem Bityutskiyd27462a2011-06-03 15:10:33 +03002711 if (power_cut_emulated(c, lnum, 1))
Artem Bityutskiy1a29af82011-04-20 17:06:17 +03002712 return -EROFS;
Artem Bityutskiy1e517642008-07-14 19:08:37 +03002713 return 0;
2714}
2715
Artem Bityutskiyf57cb182011-06-03 14:51:41 +03002716int dbg_leb_unmap(struct ubifs_info *c, int lnum)
Artem Bityutskiy1e517642008-07-14 19:08:37 +03002717{
2718 int err;
2719
Artem Bityutskiyd27462a2011-06-03 15:10:33 +03002720 if (c->dbg->pc_happened)
2721 return -EROFS;
2722 if (power_cut_emulated(c, lnum, 0))
Artem Bityutskiy1a29af82011-04-20 17:06:17 +03002723 return -EROFS;
Artem Bityutskiyf57cb182011-06-03 14:51:41 +03002724 err = ubi_leb_unmap(c->ubi, lnum);
Artem Bityutskiy1e517642008-07-14 19:08:37 +03002725 if (err)
2726 return err;
Artem Bityutskiyd27462a2011-06-03 15:10:33 +03002727 if (power_cut_emulated(c, lnum, 0))
Artem Bityutskiy1a29af82011-04-20 17:06:17 +03002728 return -EROFS;
Artem Bityutskiy1e517642008-07-14 19:08:37 +03002729 return 0;
2730}
2731
Artem Bityutskiyf57cb182011-06-03 14:51:41 +03002732int dbg_leb_map(struct ubifs_info *c, int lnum, int dtype)
Artem Bityutskiy1e517642008-07-14 19:08:37 +03002733{
2734 int err;
2735
Artem Bityutskiyd27462a2011-06-03 15:10:33 +03002736 if (c->dbg->pc_happened)
2737 return -EROFS;
2738 if (power_cut_emulated(c, lnum, 0))
Artem Bityutskiy1a29af82011-04-20 17:06:17 +03002739 return -EROFS;
Artem Bityutskiyf57cb182011-06-03 14:51:41 +03002740 err = ubi_leb_map(c->ubi, lnum, dtype);
Artem Bityutskiy1e517642008-07-14 19:08:37 +03002741 if (err)
2742 return err;
Artem Bityutskiyd27462a2011-06-03 15:10:33 +03002743 if (power_cut_emulated(c, lnum, 0))
Artem Bityutskiy1a29af82011-04-20 17:06:17 +03002744 return -EROFS;
Artem Bityutskiy1e517642008-07-14 19:08:37 +03002745 return 0;
2746}
2747
Artem Bityutskiy552ff312008-10-23 11:49:28 +03002748/*
2749 * Root directory for UBIFS stuff in debugfs. Contains sub-directories which
2750 * contain the stuff specific to particular file-system mounts.
2751 */
Artem Bityutskiy84abf972009-01-23 14:54:59 +02002752static struct dentry *dfs_rootdir;
Artem Bityutskiy552ff312008-10-23 11:49:28 +03002753
Artem Bityutskiy7dae9972011-06-01 15:44:14 +03002754static int dfs_file_open(struct inode *inode, struct file *file)
Artem Bityutskiy552ff312008-10-23 11:49:28 +03002755{
2756 file->private_data = inode->i_private;
Artem Bityutskiy1bbfc842011-03-21 16:26:42 +02002757 return nonseekable_open(inode, file);
Artem Bityutskiy552ff312008-10-23 11:49:28 +03002758}
2759
Artem Bityutskiy28488fc2011-06-03 09:58:23 +03002760/**
2761 * provide_user_output - provide output to the user reading a debugfs file.
2762 * @val: boolean value for the answer
2763 * @u: the buffer to store the answer at
2764 * @count: size of the buffer
2765 * @ppos: position in the @u output buffer
2766 *
2767 * This is a simple helper function which stores @val boolean value in the user
2768 * buffer when the user reads one of UBIFS debugfs files. Returns amount of
2769 * bytes written to @u in case of success and a negative error code in case of
2770 * failure.
2771 */
2772static int provide_user_output(int val, char __user *u, size_t count,
2773 loff_t *ppos)
2774{
2775 char buf[3];
2776
2777 if (val)
2778 buf[0] = '1';
2779 else
2780 buf[0] = '0';
2781 buf[1] = '\n';
2782 buf[2] = 0x00;
2783
2784 return simple_read_from_buffer(u, count, ppos, buf, 2);
2785}
2786
Artem Bityutskiy81e79d32011-05-31 18:16:34 +03002787static ssize_t dfs_file_read(struct file *file, char __user *u, size_t count,
2788 loff_t *ppos)
2789{
2790 struct dentry *dent = file->f_path.dentry;
2791 struct ubifs_info *c = file->private_data;
2792 struct ubifs_debug_info *d = c->dbg;
Artem Bityutskiy81e79d32011-05-31 18:16:34 +03002793 int val;
2794
2795 if (dent == d->dfs_chk_gen)
2796 val = d->chk_gen;
2797 else if (dent == d->dfs_chk_index)
2798 val = d->chk_index;
2799 else if (dent == d->dfs_chk_orph)
2800 val = d->chk_orph;
2801 else if (dent == d->dfs_chk_lprops)
2802 val = d->chk_lprops;
2803 else if (dent == d->dfs_chk_fs)
2804 val = d->chk_fs;
2805 else if (dent == d->dfs_tst_rcvry)
2806 val = d->tst_rcvry;
2807 else
2808 return -EINVAL;
2809
Artem Bityutskiy28488fc2011-06-03 09:58:23 +03002810 return provide_user_output(val, u, count, ppos);
2811}
Artem Bityutskiy81e79d32011-05-31 18:16:34 +03002812
Artem Bityutskiy28488fc2011-06-03 09:58:23 +03002813/**
2814 * interpret_user_input - interpret user debugfs file input.
2815 * @u: user-provided buffer with the input
2816 * @count: buffer size
2817 *
2818 * This is a helper function which interpret user input to a boolean UBIFS
2819 * debugfs file. Returns %0 or %1 in case of success and a negative error code
2820 * in case of failure.
2821 */
2822static int interpret_user_input(const char __user *u, size_t count)
2823{
2824 size_t buf_size;
2825 char buf[8];
2826
2827 buf_size = min_t(size_t, count, (sizeof(buf) - 1));
2828 if (copy_from_user(buf, u, buf_size))
2829 return -EFAULT;
2830
2831 if (buf[0] == '1')
2832 return 1;
2833 else if (buf[0] == '0')
2834 return 0;
2835
2836 return -EINVAL;
Artem Bityutskiy81e79d32011-05-31 18:16:34 +03002837}
2838
2839static ssize_t dfs_file_write(struct file *file, const char __user *u,
2840 size_t count, loff_t *ppos)
Artem Bityutskiy552ff312008-10-23 11:49:28 +03002841{
2842 struct ubifs_info *c = file->private_data;
2843 struct ubifs_debug_info *d = c->dbg;
Artem Bityutskiy81e79d32011-05-31 18:16:34 +03002844 struct dentry *dent = file->f_path.dentry;
Artem Bityutskiy81e79d32011-05-31 18:16:34 +03002845 int val;
Artem Bityutskiy552ff312008-10-23 11:49:28 +03002846
Artem Bityutskiy81e79d32011-05-31 18:16:34 +03002847 /*
Artem Bityutskiy24a4f802011-06-01 15:23:25 +03002848 * TODO: this is racy - the file-system might have already been
2849 * unmounted and we'd oops in this case. The plan is to fix it with
2850 * help of 'iterate_supers_type()' which we should have in v3.0: when
2851 * a debugfs opened, we rember FS's UUID in file->private_data. Then
2852 * whenever we access the FS via a debugfs file, we iterate all UBIFS
2853 * superblocks and fine the one with the same UUID, and take the
2854 * locking right.
2855 *
2856 * The other way to go suggested by Al Viro is to create a separate
2857 * 'ubifs-debug' file-system instead.
Artem Bityutskiy81e79d32011-05-31 18:16:34 +03002858 */
2859 if (file->f_path.dentry == d->dfs_dump_lprops) {
Artem Bityutskiy552ff312008-10-23 11:49:28 +03002860 dbg_dump_lprops(c);
Artem Bityutskiy81e79d32011-05-31 18:16:34 +03002861 return count;
2862 }
2863 if (file->f_path.dentry == d->dfs_dump_budg) {
Artem Bityutskiyf1bd66a2011-03-29 18:36:21 +03002864 dbg_dump_budg(c, &c->bi);
Artem Bityutskiy81e79d32011-05-31 18:16:34 +03002865 return count;
2866 }
2867 if (file->f_path.dentry == d->dfs_dump_tnc) {
Artem Bityutskiy552ff312008-10-23 11:49:28 +03002868 mutex_lock(&c->tnc_mutex);
2869 dbg_dump_tnc(c);
2870 mutex_unlock(&c->tnc_mutex);
Artem Bityutskiy81e79d32011-05-31 18:16:34 +03002871 return count;
2872 }
2873
Artem Bityutskiy28488fc2011-06-03 09:58:23 +03002874 val = interpret_user_input(u, count);
2875 if (val < 0)
2876 return val;
Artem Bityutskiy81e79d32011-05-31 18:16:34 +03002877
2878 if (dent == d->dfs_chk_gen)
2879 d->chk_gen = val;
2880 else if (dent == d->dfs_chk_index)
2881 d->chk_index = val;
2882 else if (dent == d->dfs_chk_orph)
2883 d->chk_orph = val;
2884 else if (dent == d->dfs_chk_lprops)
2885 d->chk_lprops = val;
2886 else if (dent == d->dfs_chk_fs)
2887 d->chk_fs = val;
2888 else if (dent == d->dfs_tst_rcvry)
2889 d->tst_rcvry = val;
2890 else
Artem Bityutskiy552ff312008-10-23 11:49:28 +03002891 return -EINVAL;
2892
Artem Bityutskiy552ff312008-10-23 11:49:28 +03002893 return count;
2894}
2895
Artem Bityutskiy84abf972009-01-23 14:54:59 +02002896static const struct file_operations dfs_fops = {
Artem Bityutskiy7dae9972011-06-01 15:44:14 +03002897 .open = dfs_file_open,
Artem Bityutskiy81e79d32011-05-31 18:16:34 +03002898 .read = dfs_file_read,
2899 .write = dfs_file_write,
Artem Bityutskiy552ff312008-10-23 11:49:28 +03002900 .owner = THIS_MODULE,
Artem Bityutskiy1bbfc842011-03-21 16:26:42 +02002901 .llseek = no_llseek,
Artem Bityutskiy552ff312008-10-23 11:49:28 +03002902};
2903
2904/**
2905 * dbg_debugfs_init_fs - initialize debugfs for UBIFS instance.
2906 * @c: UBIFS file-system description object
2907 *
2908 * This function creates all debugfs files for this instance of UBIFS. Returns
2909 * zero in case of success and a negative error code in case of failure.
2910 *
2911 * Note, the only reason we have not merged this function with the
2912 * 'ubifs_debugging_init()' function is because it is better to initialize
2913 * debugfs interfaces at the very end of the mount process, and remove them at
2914 * the very beginning of the mount process.
2915 */
2916int dbg_debugfs_init_fs(struct ubifs_info *c)
2917{
Artem Bityutskiyae380ce2011-05-19 14:13:16 +03002918 int err, n;
Artem Bityutskiy552ff312008-10-23 11:49:28 +03002919 const char *fname;
2920 struct dentry *dent;
2921 struct ubifs_debug_info *d = c->dbg;
2922
Artem Bityutskiyae380ce2011-05-19 14:13:16 +03002923 n = snprintf(d->dfs_dir_name, UBIFS_DFS_DIR_LEN + 1, UBIFS_DFS_DIR_NAME,
2924 c->vi.ubi_num, c->vi.vol_id);
2925 if (n == UBIFS_DFS_DIR_LEN) {
2926 /* The array size is too small */
2927 fname = UBIFS_DFS_DIR_NAME;
2928 dent = ERR_PTR(-EINVAL);
2929 goto out;
2930 }
2931
Artem Bityutskiycc6a86b2011-04-01 10:10:52 +03002932 fname = d->dfs_dir_name;
2933 dent = debugfs_create_dir(fname, dfs_rootdir);
Artem Bityutskiy95169532011-04-01 10:16:17 +03002934 if (IS_ERR_OR_NULL(dent))
Artem Bityutskiy552ff312008-10-23 11:49:28 +03002935 goto out;
Artem Bityutskiycc6a86b2011-04-01 10:10:52 +03002936 d->dfs_dir = dent;
Artem Bityutskiy552ff312008-10-23 11:49:28 +03002937
2938 fname = "dump_lprops";
Vasiliy Kulikov8c559d32011-02-04 15:24:19 +03002939 dent = debugfs_create_file(fname, S_IWUSR, d->dfs_dir, c, &dfs_fops);
Artem Bityutskiy95169532011-04-01 10:16:17 +03002940 if (IS_ERR_OR_NULL(dent))
Artem Bityutskiy552ff312008-10-23 11:49:28 +03002941 goto out_remove;
Artem Bityutskiy84abf972009-01-23 14:54:59 +02002942 d->dfs_dump_lprops = dent;
Artem Bityutskiy552ff312008-10-23 11:49:28 +03002943
2944 fname = "dump_budg";
Vasiliy Kulikov8c559d32011-02-04 15:24:19 +03002945 dent = debugfs_create_file(fname, S_IWUSR, d->dfs_dir, c, &dfs_fops);
Artem Bityutskiy95169532011-04-01 10:16:17 +03002946 if (IS_ERR_OR_NULL(dent))
Artem Bityutskiy552ff312008-10-23 11:49:28 +03002947 goto out_remove;
Artem Bityutskiy84abf972009-01-23 14:54:59 +02002948 d->dfs_dump_budg = dent;
Artem Bityutskiy552ff312008-10-23 11:49:28 +03002949
2950 fname = "dump_tnc";
Vasiliy Kulikov8c559d32011-02-04 15:24:19 +03002951 dent = debugfs_create_file(fname, S_IWUSR, d->dfs_dir, c, &dfs_fops);
Artem Bityutskiy95169532011-04-01 10:16:17 +03002952 if (IS_ERR_OR_NULL(dent))
Artem Bityutskiy552ff312008-10-23 11:49:28 +03002953 goto out_remove;
Artem Bityutskiy84abf972009-01-23 14:54:59 +02002954 d->dfs_dump_tnc = dent;
Artem Bityutskiy552ff312008-10-23 11:49:28 +03002955
Artem Bityutskiy81e79d32011-05-31 18:16:34 +03002956 fname = "chk_general";
2957 dent = debugfs_create_file(fname, S_IRUSR | S_IWUSR, d->dfs_dir, c,
2958 &dfs_fops);
2959 if (IS_ERR_OR_NULL(dent))
2960 goto out_remove;
2961 d->dfs_chk_gen = dent;
2962
2963 fname = "chk_index";
2964 dent = debugfs_create_file(fname, S_IRUSR | S_IWUSR, d->dfs_dir, c,
2965 &dfs_fops);
2966 if (IS_ERR_OR_NULL(dent))
2967 goto out_remove;
2968 d->dfs_chk_index = dent;
2969
2970 fname = "chk_orphans";
2971 dent = debugfs_create_file(fname, S_IRUSR | S_IWUSR, d->dfs_dir, c,
2972 &dfs_fops);
2973 if (IS_ERR_OR_NULL(dent))
2974 goto out_remove;
2975 d->dfs_chk_orph = dent;
2976
2977 fname = "chk_lprops";
2978 dent = debugfs_create_file(fname, S_IRUSR | S_IWUSR, d->dfs_dir, c,
2979 &dfs_fops);
2980 if (IS_ERR_OR_NULL(dent))
2981 goto out_remove;
2982 d->dfs_chk_lprops = dent;
2983
2984 fname = "chk_fs";
2985 dent = debugfs_create_file(fname, S_IRUSR | S_IWUSR, d->dfs_dir, c,
2986 &dfs_fops);
2987 if (IS_ERR_OR_NULL(dent))
2988 goto out_remove;
2989 d->dfs_chk_fs = dent;
2990
2991 fname = "tst_recovery";
2992 dent = debugfs_create_file(fname, S_IRUSR | S_IWUSR, d->dfs_dir, c,
2993 &dfs_fops);
2994 if (IS_ERR_OR_NULL(dent))
2995 goto out_remove;
2996 d->dfs_tst_rcvry = dent;
2997
Artem Bityutskiy552ff312008-10-23 11:49:28 +03002998 return 0;
2999
3000out_remove:
Artem Bityutskiycc6a86b2011-04-01 10:10:52 +03003001 debugfs_remove_recursive(d->dfs_dir);
3002out:
Artem Bityutskiy95169532011-04-01 10:16:17 +03003003 err = dent ? PTR_ERR(dent) : -ENODEV;
Artem Bityutskiye7717062011-06-01 17:43:43 +03003004 ubifs_err("cannot create \"%s\" debugfs file or directory, error %d\n",
Artem Bityutskiy552ff312008-10-23 11:49:28 +03003005 fname, err);
Artem Bityutskiy552ff312008-10-23 11:49:28 +03003006 return err;
3007}
3008
3009/**
3010 * dbg_debugfs_exit_fs - remove all debugfs files.
3011 * @c: UBIFS file-system description object
3012 */
3013void dbg_debugfs_exit_fs(struct ubifs_info *c)
3014{
Artem Bityutskiy84abf972009-01-23 14:54:59 +02003015 debugfs_remove_recursive(c->dbg->dfs_dir);
Artem Bityutskiy552ff312008-10-23 11:49:28 +03003016}
3017
Artem Bityutskiye7717062011-06-01 17:43:43 +03003018struct ubifs_global_debug_info ubifs_dbg;
3019
3020static struct dentry *dfs_chk_gen;
3021static struct dentry *dfs_chk_index;
3022static struct dentry *dfs_chk_orph;
3023static struct dentry *dfs_chk_lprops;
3024static struct dentry *dfs_chk_fs;
3025static struct dentry *dfs_tst_rcvry;
3026
3027static ssize_t dfs_global_file_read(struct file *file, char __user *u,
3028 size_t count, loff_t *ppos)
3029{
3030 struct dentry *dent = file->f_path.dentry;
3031 int val;
3032
3033 if (dent == dfs_chk_gen)
3034 val = ubifs_dbg.chk_gen;
3035 else if (dent == dfs_chk_index)
3036 val = ubifs_dbg.chk_index;
3037 else if (dent == dfs_chk_orph)
3038 val = ubifs_dbg.chk_orph;
3039 else if (dent == dfs_chk_lprops)
3040 val = ubifs_dbg.chk_lprops;
3041 else if (dent == dfs_chk_fs)
3042 val = ubifs_dbg.chk_fs;
3043 else if (dent == dfs_tst_rcvry)
3044 val = ubifs_dbg.tst_rcvry;
3045 else
3046 return -EINVAL;
3047
3048 return provide_user_output(val, u, count, ppos);
3049}
3050
3051static ssize_t dfs_global_file_write(struct file *file, const char __user *u,
3052 size_t count, loff_t *ppos)
3053{
3054 struct dentry *dent = file->f_path.dentry;
3055 int val;
3056
3057 val = interpret_user_input(u, count);
3058 if (val < 0)
3059 return val;
3060
3061 if (dent == dfs_chk_gen)
3062 ubifs_dbg.chk_gen = val;
3063 else if (dent == dfs_chk_index)
3064 ubifs_dbg.chk_index = val;
3065 else if (dent == dfs_chk_orph)
3066 ubifs_dbg.chk_orph = val;
3067 else if (dent == dfs_chk_lprops)
3068 ubifs_dbg.chk_lprops = val;
3069 else if (dent == dfs_chk_fs)
3070 ubifs_dbg.chk_fs = val;
3071 else if (dent == dfs_tst_rcvry)
3072 ubifs_dbg.tst_rcvry = val;
3073 else
3074 return -EINVAL;
3075
3076 return count;
3077}
3078
3079static const struct file_operations dfs_global_fops = {
3080 .read = dfs_global_file_read,
3081 .write = dfs_global_file_write,
3082 .owner = THIS_MODULE,
3083 .llseek = no_llseek,
3084};
3085
Artem Bityutskiy7dae9972011-06-01 15:44:14 +03003086/**
3087 * dbg_debugfs_init - initialize debugfs file-system.
3088 *
3089 * UBIFS uses debugfs file-system to expose various debugging knobs to
3090 * user-space. This function creates "ubifs" directory in the debugfs
3091 * file-system. Returns zero in case of success and a negative error code in
3092 * case of failure.
3093 */
3094int dbg_debugfs_init(void)
3095{
Artem Bityutskiye7717062011-06-01 17:43:43 +03003096 int err;
3097 const char *fname;
3098 struct dentry *dent;
3099
3100 fname = "ubifs";
3101 dent = debugfs_create_dir(fname, NULL);
3102 if (IS_ERR_OR_NULL(dent))
3103 goto out;
3104 dfs_rootdir = dent;
3105
3106 fname = "chk_general";
3107 dent = debugfs_create_file(fname, S_IRUSR | S_IWUSR, dfs_rootdir, NULL,
3108 &dfs_global_fops);
3109 if (IS_ERR_OR_NULL(dent))
3110 goto out_remove;
3111 dfs_chk_gen = dent;
3112
3113 fname = "chk_index";
3114 dent = debugfs_create_file(fname, S_IRUSR | S_IWUSR, dfs_rootdir, NULL,
3115 &dfs_global_fops);
3116 if (IS_ERR_OR_NULL(dent))
3117 goto out_remove;
3118 dfs_chk_index = dent;
3119
3120 fname = "chk_orphans";
3121 dent = debugfs_create_file(fname, S_IRUSR | S_IWUSR, dfs_rootdir, NULL,
3122 &dfs_global_fops);
3123 if (IS_ERR_OR_NULL(dent))
3124 goto out_remove;
3125 dfs_chk_orph = dent;
3126
3127 fname = "chk_lprops";
3128 dent = debugfs_create_file(fname, S_IRUSR | S_IWUSR, dfs_rootdir, NULL,
3129 &dfs_global_fops);
3130 if (IS_ERR_OR_NULL(dent))
3131 goto out_remove;
3132 dfs_chk_lprops = dent;
3133
3134 fname = "chk_fs";
3135 dent = debugfs_create_file(fname, S_IRUSR | S_IWUSR, dfs_rootdir, NULL,
3136 &dfs_global_fops);
3137 if (IS_ERR_OR_NULL(dent))
3138 goto out_remove;
3139 dfs_chk_fs = dent;
3140
3141 fname = "tst_recovery";
3142 dent = debugfs_create_file(fname, S_IRUSR | S_IWUSR, dfs_rootdir, NULL,
3143 &dfs_global_fops);
3144 if (IS_ERR_OR_NULL(dent))
3145 goto out_remove;
3146 dfs_tst_rcvry = dent;
Artem Bityutskiy7dae9972011-06-01 15:44:14 +03003147
3148 return 0;
Artem Bityutskiye7717062011-06-01 17:43:43 +03003149
3150out_remove:
3151 debugfs_remove_recursive(dfs_rootdir);
3152out:
3153 err = dent ? PTR_ERR(dent) : -ENODEV;
3154 ubifs_err("cannot create \"%s\" debugfs file or directory, error %d\n",
3155 fname, err);
3156 return err;
Artem Bityutskiy7dae9972011-06-01 15:44:14 +03003157}
3158
3159/**
3160 * dbg_debugfs_exit - remove the "ubifs" directory from debugfs file-system.
3161 */
3162void dbg_debugfs_exit(void)
3163{
Artem Bityutskiye7717062011-06-01 17:43:43 +03003164 debugfs_remove_recursive(dfs_rootdir);
Artem Bityutskiy7dae9972011-06-01 15:44:14 +03003165}
3166
3167/**
3168 * ubifs_debugging_init - initialize UBIFS debugging.
3169 * @c: UBIFS file-system description object
3170 *
3171 * This function initializes debugging-related data for the file system.
3172 * Returns zero in case of success and a negative error code in case of
3173 * failure.
3174 */
3175int ubifs_debugging_init(struct ubifs_info *c)
3176{
3177 c->dbg = kzalloc(sizeof(struct ubifs_debug_info), GFP_KERNEL);
3178 if (!c->dbg)
3179 return -ENOMEM;
3180
Artem Bityutskiy7dae9972011-06-01 15:44:14 +03003181 return 0;
3182}
3183
3184/**
3185 * ubifs_debugging_exit - free debugging data.
3186 * @c: UBIFS file-system description object
3187 */
3188void ubifs_debugging_exit(struct ubifs_info *c)
3189{
Artem Bityutskiy7dae9972011-06-01 15:44:14 +03003190 kfree(c->dbg);
3191}
3192
Artem Bityutskiy1e517642008-07-14 19:08:37 +03003193#endif /* CONFIG_UBIFS_FS_DEBUG */