xref: /openbmc/linux/fs/ubifs/debug.c (revision f57cb188ccd9c0242111d99b7283eda7827746c4)
11e51764aSArtem Bityutskiy /*
21e51764aSArtem Bityutskiy  * This file is part of UBIFS.
31e51764aSArtem Bityutskiy  *
41e51764aSArtem Bityutskiy  * Copyright (C) 2006-2008 Nokia Corporation
51e51764aSArtem Bityutskiy  *
61e51764aSArtem Bityutskiy  * This program is free software; you can redistribute it and/or modify it
71e51764aSArtem Bityutskiy  * under the terms of the GNU General Public License version 2 as published by
81e51764aSArtem Bityutskiy  * the Free Software Foundation.
91e51764aSArtem Bityutskiy  *
101e51764aSArtem Bityutskiy  * This program is distributed in the hope that it will be useful, but WITHOUT
111e51764aSArtem Bityutskiy  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
121e51764aSArtem Bityutskiy  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
131e51764aSArtem Bityutskiy  * more details.
141e51764aSArtem Bityutskiy  *
151e51764aSArtem Bityutskiy  * You should have received a copy of the GNU General Public License along with
161e51764aSArtem Bityutskiy  * this program; if not, write to the Free Software Foundation, Inc., 51
171e51764aSArtem Bityutskiy  * Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
181e51764aSArtem Bityutskiy  *
191e51764aSArtem Bityutskiy  * Authors: Artem Bityutskiy (Битюцкий Артём)
201e51764aSArtem Bityutskiy  *          Adrian Hunter
211e51764aSArtem Bityutskiy  */
221e51764aSArtem Bityutskiy 
231e51764aSArtem Bityutskiy /*
241e51764aSArtem Bityutskiy  * This file implements most of the debugging stuff which is compiled in only
251e51764aSArtem Bityutskiy  * when it is enabled. But some debugging check functions are implemented in
261e51764aSArtem Bityutskiy  * corresponding subsystem, just because they are closely related and utilize
271e51764aSArtem Bityutskiy  * various local functions of those subsystems.
281e51764aSArtem Bityutskiy  */
291e51764aSArtem Bityutskiy 
301e51764aSArtem Bityutskiy #include "ubifs.h"
311e51764aSArtem Bityutskiy #include <linux/module.h>
32552ff317SArtem Bityutskiy #include <linux/debugfs.h>
334d61db4fSArtem Bityutskiy #include <linux/math64.h>
3481e79d38SArtem Bityutskiy #include <linux/uaccess.h>
351e51764aSArtem Bityutskiy 
361e51764aSArtem Bityutskiy #ifdef CONFIG_UBIFS_FS_DEBUG
371e51764aSArtem Bityutskiy 
381e51764aSArtem Bityutskiy DEFINE_SPINLOCK(dbg_lock);
391e51764aSArtem Bityutskiy 
401e51764aSArtem Bityutskiy static char dbg_key_buf0[128];
411e51764aSArtem Bityutskiy static char dbg_key_buf1[128];
421e51764aSArtem Bityutskiy 
431e51764aSArtem Bityutskiy static const char *get_key_fmt(int fmt)
441e51764aSArtem Bityutskiy {
451e51764aSArtem Bityutskiy 	switch (fmt) {
461e51764aSArtem Bityutskiy 	case UBIFS_SIMPLE_KEY_FMT:
471e51764aSArtem Bityutskiy 		return "simple";
481e51764aSArtem Bityutskiy 	default:
491e51764aSArtem Bityutskiy 		return "unknown/invalid format";
501e51764aSArtem Bityutskiy 	}
511e51764aSArtem Bityutskiy }
521e51764aSArtem Bityutskiy 
531e51764aSArtem Bityutskiy static const char *get_key_hash(int hash)
541e51764aSArtem Bityutskiy {
551e51764aSArtem Bityutskiy 	switch (hash) {
561e51764aSArtem Bityutskiy 	case UBIFS_KEY_HASH_R5:
571e51764aSArtem Bityutskiy 		return "R5";
581e51764aSArtem Bityutskiy 	case UBIFS_KEY_HASH_TEST:
591e51764aSArtem Bityutskiy 		return "test";
601e51764aSArtem Bityutskiy 	default:
611e51764aSArtem Bityutskiy 		return "unknown/invalid name hash";
621e51764aSArtem Bityutskiy 	}
631e51764aSArtem Bityutskiy }
641e51764aSArtem Bityutskiy 
651e51764aSArtem Bityutskiy static const char *get_key_type(int type)
661e51764aSArtem Bityutskiy {
671e51764aSArtem Bityutskiy 	switch (type) {
681e51764aSArtem Bityutskiy 	case UBIFS_INO_KEY:
691e51764aSArtem Bityutskiy 		return "inode";
701e51764aSArtem Bityutskiy 	case UBIFS_DENT_KEY:
711e51764aSArtem Bityutskiy 		return "direntry";
721e51764aSArtem Bityutskiy 	case UBIFS_XENT_KEY:
731e51764aSArtem Bityutskiy 		return "xentry";
741e51764aSArtem Bityutskiy 	case UBIFS_DATA_KEY:
751e51764aSArtem Bityutskiy 		return "data";
761e51764aSArtem Bityutskiy 	case UBIFS_TRUN_KEY:
771e51764aSArtem Bityutskiy 		return "truncate";
781e51764aSArtem Bityutskiy 	default:
791e51764aSArtem Bityutskiy 		return "unknown/invalid key";
801e51764aSArtem Bityutskiy 	}
811e51764aSArtem Bityutskiy }
821e51764aSArtem Bityutskiy 
834315fb40SArtem Bityutskiy static const char *get_dent_type(int type)
844315fb40SArtem Bityutskiy {
854315fb40SArtem Bityutskiy 	switch (type) {
864315fb40SArtem Bityutskiy 	case UBIFS_ITYPE_REG:
874315fb40SArtem Bityutskiy 		return "file";
884315fb40SArtem Bityutskiy 	case UBIFS_ITYPE_DIR:
894315fb40SArtem Bityutskiy 		return "dir";
904315fb40SArtem Bityutskiy 	case UBIFS_ITYPE_LNK:
914315fb40SArtem Bityutskiy 		return "symlink";
924315fb40SArtem Bityutskiy 	case UBIFS_ITYPE_BLK:
934315fb40SArtem Bityutskiy 		return "blkdev";
944315fb40SArtem Bityutskiy 	case UBIFS_ITYPE_CHR:
954315fb40SArtem Bityutskiy 		return "char dev";
964315fb40SArtem Bityutskiy 	case UBIFS_ITYPE_FIFO:
974315fb40SArtem Bityutskiy 		return "fifo";
984315fb40SArtem Bityutskiy 	case UBIFS_ITYPE_SOCK:
994315fb40SArtem Bityutskiy 		return "socket";
1004315fb40SArtem Bityutskiy 	default:
1014315fb40SArtem Bityutskiy 		return "unknown/invalid type";
1024315fb40SArtem Bityutskiy 	}
1034315fb40SArtem Bityutskiy }
1044315fb40SArtem Bityutskiy 
1051e51764aSArtem Bityutskiy static void sprintf_key(const struct ubifs_info *c, const union ubifs_key *key,
1061e51764aSArtem Bityutskiy 			char *buffer)
1071e51764aSArtem Bityutskiy {
1081e51764aSArtem Bityutskiy 	char *p = buffer;
1091e51764aSArtem Bityutskiy 	int type = key_type(c, key);
1101e51764aSArtem Bityutskiy 
1111e51764aSArtem Bityutskiy 	if (c->key_fmt == UBIFS_SIMPLE_KEY_FMT) {
1121e51764aSArtem Bityutskiy 		switch (type) {
1131e51764aSArtem Bityutskiy 		case UBIFS_INO_KEY:
114e84461adSArtem Bityutskiy 			sprintf(p, "(%lu, %s)", (unsigned long)key_inum(c, key),
1151e51764aSArtem Bityutskiy 			       get_key_type(type));
1161e51764aSArtem Bityutskiy 			break;
1171e51764aSArtem Bityutskiy 		case UBIFS_DENT_KEY:
1181e51764aSArtem Bityutskiy 		case UBIFS_XENT_KEY:
119e84461adSArtem Bityutskiy 			sprintf(p, "(%lu, %s, %#08x)",
120e84461adSArtem Bityutskiy 				(unsigned long)key_inum(c, key),
1211e51764aSArtem Bityutskiy 				get_key_type(type), key_hash(c, key));
1221e51764aSArtem Bityutskiy 			break;
1231e51764aSArtem Bityutskiy 		case UBIFS_DATA_KEY:
124e84461adSArtem Bityutskiy 			sprintf(p, "(%lu, %s, %u)",
125e84461adSArtem Bityutskiy 				(unsigned long)key_inum(c, key),
1261e51764aSArtem Bityutskiy 				get_key_type(type), key_block(c, key));
1271e51764aSArtem Bityutskiy 			break;
1281e51764aSArtem Bityutskiy 		case UBIFS_TRUN_KEY:
1291e51764aSArtem Bityutskiy 			sprintf(p, "(%lu, %s)",
130e84461adSArtem Bityutskiy 				(unsigned long)key_inum(c, key),
131e84461adSArtem Bityutskiy 				get_key_type(type));
1321e51764aSArtem Bityutskiy 			break;
1331e51764aSArtem Bityutskiy 		default:
1341e51764aSArtem Bityutskiy 			sprintf(p, "(bad key type: %#08x, %#08x)",
1351e51764aSArtem Bityutskiy 				key->u32[0], key->u32[1]);
1361e51764aSArtem Bityutskiy 		}
1371e51764aSArtem Bityutskiy 	} else
1381e51764aSArtem Bityutskiy 		sprintf(p, "bad key format %d", c->key_fmt);
1391e51764aSArtem Bityutskiy }
1401e51764aSArtem Bityutskiy 
1411e51764aSArtem Bityutskiy const char *dbg_key_str0(const struct ubifs_info *c, const union ubifs_key *key)
1421e51764aSArtem Bityutskiy {
1431e51764aSArtem Bityutskiy 	/* dbg_lock must be held */
1441e51764aSArtem Bityutskiy 	sprintf_key(c, key, dbg_key_buf0);
1451e51764aSArtem Bityutskiy 	return dbg_key_buf0;
1461e51764aSArtem Bityutskiy }
1471e51764aSArtem Bityutskiy 
1481e51764aSArtem Bityutskiy const char *dbg_key_str1(const struct ubifs_info *c, const union ubifs_key *key)
1491e51764aSArtem Bityutskiy {
1501e51764aSArtem Bityutskiy 	/* dbg_lock must be held */
1511e51764aSArtem Bityutskiy 	sprintf_key(c, key, dbg_key_buf1);
1521e51764aSArtem Bityutskiy 	return dbg_key_buf1;
1531e51764aSArtem Bityutskiy }
1541e51764aSArtem Bityutskiy 
1551e51764aSArtem Bityutskiy const char *dbg_ntype(int type)
1561e51764aSArtem Bityutskiy {
1571e51764aSArtem Bityutskiy 	switch (type) {
1581e51764aSArtem Bityutskiy 	case UBIFS_PAD_NODE:
1591e51764aSArtem Bityutskiy 		return "padding node";
1601e51764aSArtem Bityutskiy 	case UBIFS_SB_NODE:
1611e51764aSArtem Bityutskiy 		return "superblock node";
1621e51764aSArtem Bityutskiy 	case UBIFS_MST_NODE:
1631e51764aSArtem Bityutskiy 		return "master node";
1641e51764aSArtem Bityutskiy 	case UBIFS_REF_NODE:
1651e51764aSArtem Bityutskiy 		return "reference node";
1661e51764aSArtem Bityutskiy 	case UBIFS_INO_NODE:
1671e51764aSArtem Bityutskiy 		return "inode node";
1681e51764aSArtem Bityutskiy 	case UBIFS_DENT_NODE:
1691e51764aSArtem Bityutskiy 		return "direntry node";
1701e51764aSArtem Bityutskiy 	case UBIFS_XENT_NODE:
1711e51764aSArtem Bityutskiy 		return "xentry node";
1721e51764aSArtem Bityutskiy 	case UBIFS_DATA_NODE:
1731e51764aSArtem Bityutskiy 		return "data node";
1741e51764aSArtem Bityutskiy 	case UBIFS_TRUN_NODE:
1751e51764aSArtem Bityutskiy 		return "truncate node";
1761e51764aSArtem Bityutskiy 	case UBIFS_IDX_NODE:
1771e51764aSArtem Bityutskiy 		return "indexing node";
1781e51764aSArtem Bityutskiy 	case UBIFS_CS_NODE:
1791e51764aSArtem Bityutskiy 		return "commit start node";
1801e51764aSArtem Bityutskiy 	case UBIFS_ORPH_NODE:
1811e51764aSArtem Bityutskiy 		return "orphan node";
1821e51764aSArtem Bityutskiy 	default:
1831e51764aSArtem Bityutskiy 		return "unknown node";
1841e51764aSArtem Bityutskiy 	}
1851e51764aSArtem Bityutskiy }
1861e51764aSArtem Bityutskiy 
1871e51764aSArtem Bityutskiy static const char *dbg_gtype(int type)
1881e51764aSArtem Bityutskiy {
1891e51764aSArtem Bityutskiy 	switch (type) {
1901e51764aSArtem Bityutskiy 	case UBIFS_NO_NODE_GROUP:
1911e51764aSArtem Bityutskiy 		return "no node group";
1921e51764aSArtem Bityutskiy 	case UBIFS_IN_NODE_GROUP:
1931e51764aSArtem Bityutskiy 		return "in node group";
1941e51764aSArtem Bityutskiy 	case UBIFS_LAST_OF_NODE_GROUP:
1951e51764aSArtem Bityutskiy 		return "last of node group";
1961e51764aSArtem Bityutskiy 	default:
1971e51764aSArtem Bityutskiy 		return "unknown";
1981e51764aSArtem Bityutskiy 	}
1991e51764aSArtem Bityutskiy }
2001e51764aSArtem Bityutskiy 
2011e51764aSArtem Bityutskiy const char *dbg_cstate(int cmt_state)
2021e51764aSArtem Bityutskiy {
2031e51764aSArtem Bityutskiy 	switch (cmt_state) {
2041e51764aSArtem Bityutskiy 	case COMMIT_RESTING:
2051e51764aSArtem Bityutskiy 		return "commit resting";
2061e51764aSArtem Bityutskiy 	case COMMIT_BACKGROUND:
2071e51764aSArtem Bityutskiy 		return "background commit requested";
2081e51764aSArtem Bityutskiy 	case COMMIT_REQUIRED:
2091e51764aSArtem Bityutskiy 		return "commit required";
2101e51764aSArtem Bityutskiy 	case COMMIT_RUNNING_BACKGROUND:
2111e51764aSArtem Bityutskiy 		return "BACKGROUND commit running";
2121e51764aSArtem Bityutskiy 	case COMMIT_RUNNING_REQUIRED:
2131e51764aSArtem Bityutskiy 		return "commit running and required";
2141e51764aSArtem Bityutskiy 	case COMMIT_BROKEN:
2151e51764aSArtem Bityutskiy 		return "broken commit";
2161e51764aSArtem Bityutskiy 	default:
2171e51764aSArtem Bityutskiy 		return "unknown commit state";
2181e51764aSArtem Bityutskiy 	}
2191e51764aSArtem Bityutskiy }
2201e51764aSArtem Bityutskiy 
22177a7ae58SArtem Bityutskiy const char *dbg_jhead(int jhead)
22277a7ae58SArtem Bityutskiy {
22377a7ae58SArtem Bityutskiy 	switch (jhead) {
22477a7ae58SArtem Bityutskiy 	case GCHD:
22577a7ae58SArtem Bityutskiy 		return "0 (GC)";
22677a7ae58SArtem Bityutskiy 	case BASEHD:
22777a7ae58SArtem Bityutskiy 		return "1 (base)";
22877a7ae58SArtem Bityutskiy 	case DATAHD:
22977a7ae58SArtem Bityutskiy 		return "2 (data)";
23077a7ae58SArtem Bityutskiy 	default:
23177a7ae58SArtem Bityutskiy 		return "unknown journal head";
23277a7ae58SArtem Bityutskiy 	}
23377a7ae58SArtem Bityutskiy }
23477a7ae58SArtem Bityutskiy 
2351e51764aSArtem Bityutskiy static void dump_ch(const struct ubifs_ch *ch)
2361e51764aSArtem Bityutskiy {
2371e51764aSArtem Bityutskiy 	printk(KERN_DEBUG "\tmagic          %#x\n", le32_to_cpu(ch->magic));
2381e51764aSArtem Bityutskiy 	printk(KERN_DEBUG "\tcrc            %#x\n", le32_to_cpu(ch->crc));
2391e51764aSArtem Bityutskiy 	printk(KERN_DEBUG "\tnode_type      %d (%s)\n", ch->node_type,
2401e51764aSArtem Bityutskiy 	       dbg_ntype(ch->node_type));
2411e51764aSArtem Bityutskiy 	printk(KERN_DEBUG "\tgroup_type     %d (%s)\n", ch->group_type,
2421e51764aSArtem Bityutskiy 	       dbg_gtype(ch->group_type));
2431e51764aSArtem Bityutskiy 	printk(KERN_DEBUG "\tsqnum          %llu\n",
2441e51764aSArtem Bityutskiy 	       (unsigned long long)le64_to_cpu(ch->sqnum));
2451e51764aSArtem Bityutskiy 	printk(KERN_DEBUG "\tlen            %u\n", le32_to_cpu(ch->len));
2461e51764aSArtem Bityutskiy }
2471e51764aSArtem Bityutskiy 
2484315fb40SArtem Bityutskiy void dbg_dump_inode(struct ubifs_info *c, const struct inode *inode)
2491e51764aSArtem Bityutskiy {
2501e51764aSArtem Bityutskiy 	const struct ubifs_inode *ui = ubifs_inode(inode);
2514315fb40SArtem Bityutskiy 	struct qstr nm = { .name = NULL };
2524315fb40SArtem Bityutskiy 	union ubifs_key key;
2534315fb40SArtem Bityutskiy 	struct ubifs_dent_node *dent, *pdent = NULL;
2544315fb40SArtem Bityutskiy 	int count = 2;
2551e51764aSArtem Bityutskiy 
256b5e426e9SArtem Bityutskiy 	printk(KERN_DEBUG "Dump in-memory inode:");
257b5e426e9SArtem Bityutskiy 	printk(KERN_DEBUG "\tinode          %lu\n", inode->i_ino);
258b5e426e9SArtem Bityutskiy 	printk(KERN_DEBUG "\tsize           %llu\n",
2591e51764aSArtem Bityutskiy 	       (unsigned long long)i_size_read(inode));
260b5e426e9SArtem Bityutskiy 	printk(KERN_DEBUG "\tnlink          %u\n", inode->i_nlink);
261b5e426e9SArtem Bityutskiy 	printk(KERN_DEBUG "\tuid            %u\n", (unsigned int)inode->i_uid);
262b5e426e9SArtem Bityutskiy 	printk(KERN_DEBUG "\tgid            %u\n", (unsigned int)inode->i_gid);
263b5e426e9SArtem Bityutskiy 	printk(KERN_DEBUG "\tatime          %u.%u\n",
2641e51764aSArtem Bityutskiy 	       (unsigned int)inode->i_atime.tv_sec,
2651e51764aSArtem Bityutskiy 	       (unsigned int)inode->i_atime.tv_nsec);
266b5e426e9SArtem Bityutskiy 	printk(KERN_DEBUG "\tmtime          %u.%u\n",
2671e51764aSArtem Bityutskiy 	       (unsigned int)inode->i_mtime.tv_sec,
2681e51764aSArtem Bityutskiy 	       (unsigned int)inode->i_mtime.tv_nsec);
269b5e426e9SArtem Bityutskiy 	printk(KERN_DEBUG "\tctime          %u.%u\n",
2701e51764aSArtem Bityutskiy 	       (unsigned int)inode->i_ctime.tv_sec,
2711e51764aSArtem Bityutskiy 	       (unsigned int)inode->i_ctime.tv_nsec);
272b5e426e9SArtem Bityutskiy 	printk(KERN_DEBUG "\tcreat_sqnum    %llu\n", ui->creat_sqnum);
273b5e426e9SArtem Bityutskiy 	printk(KERN_DEBUG "\txattr_size     %u\n", ui->xattr_size);
274b5e426e9SArtem Bityutskiy 	printk(KERN_DEBUG "\txattr_cnt      %u\n", ui->xattr_cnt);
275b5e426e9SArtem Bityutskiy 	printk(KERN_DEBUG "\txattr_names    %u\n", ui->xattr_names);
276b5e426e9SArtem Bityutskiy 	printk(KERN_DEBUG "\tdirty          %u\n", ui->dirty);
277b5e426e9SArtem Bityutskiy 	printk(KERN_DEBUG "\txattr          %u\n", ui->xattr);
278b5e426e9SArtem Bityutskiy 	printk(KERN_DEBUG "\tbulk_read      %u\n", ui->xattr);
279b5e426e9SArtem Bityutskiy 	printk(KERN_DEBUG "\tsynced_i_size  %llu\n",
280b5e426e9SArtem Bityutskiy 	       (unsigned long long)ui->synced_i_size);
281b5e426e9SArtem Bityutskiy 	printk(KERN_DEBUG "\tui_size        %llu\n",
282b5e426e9SArtem Bityutskiy 	       (unsigned long long)ui->ui_size);
283b5e426e9SArtem Bityutskiy 	printk(KERN_DEBUG "\tflags          %d\n", ui->flags);
284b5e426e9SArtem Bityutskiy 	printk(KERN_DEBUG "\tcompr_type     %d\n", ui->compr_type);
285b5e426e9SArtem Bityutskiy 	printk(KERN_DEBUG "\tlast_page_read %lu\n", ui->last_page_read);
286b5e426e9SArtem Bityutskiy 	printk(KERN_DEBUG "\tread_in_a_row  %lu\n", ui->read_in_a_row);
287b5e426e9SArtem Bityutskiy 	printk(KERN_DEBUG "\tdata_len       %d\n", ui->data_len);
2884315fb40SArtem Bityutskiy 
2894315fb40SArtem Bityutskiy 	if (!S_ISDIR(inode->i_mode))
2904315fb40SArtem Bityutskiy 		return;
2914315fb40SArtem Bityutskiy 
2924315fb40SArtem Bityutskiy 	printk(KERN_DEBUG "List of directory entries:\n");
2934315fb40SArtem Bityutskiy 	ubifs_assert(!mutex_is_locked(&c->tnc_mutex));
2944315fb40SArtem Bityutskiy 
2954315fb40SArtem Bityutskiy 	lowest_dent_key(c, &key, inode->i_ino);
2964315fb40SArtem Bityutskiy 	while (1) {
2974315fb40SArtem Bityutskiy 		dent = ubifs_tnc_next_ent(c, &key, &nm);
2984315fb40SArtem Bityutskiy 		if (IS_ERR(dent)) {
2994315fb40SArtem Bityutskiy 			if (PTR_ERR(dent) != -ENOENT)
3004315fb40SArtem Bityutskiy 				printk(KERN_DEBUG "error %ld\n", PTR_ERR(dent));
3014315fb40SArtem Bityutskiy 			break;
3024315fb40SArtem Bityutskiy 		}
3034315fb40SArtem Bityutskiy 
3044315fb40SArtem Bityutskiy 		printk(KERN_DEBUG "\t%d: %s (%s)\n",
3054315fb40SArtem Bityutskiy 		       count++, dent->name, get_dent_type(dent->type));
3064315fb40SArtem Bityutskiy 
3074315fb40SArtem Bityutskiy 		nm.name = dent->name;
3084315fb40SArtem Bityutskiy 		nm.len = le16_to_cpu(dent->nlen);
3094315fb40SArtem Bityutskiy 		kfree(pdent);
3104315fb40SArtem Bityutskiy 		pdent = dent;
3114315fb40SArtem Bityutskiy 		key_read(c, &dent->key, &key);
3124315fb40SArtem Bityutskiy 	}
3134315fb40SArtem Bityutskiy 	kfree(pdent);
3141e51764aSArtem Bityutskiy }
3151e51764aSArtem Bityutskiy 
3161e51764aSArtem Bityutskiy void dbg_dump_node(const struct ubifs_info *c, const void *node)
3171e51764aSArtem Bityutskiy {
3181e51764aSArtem Bityutskiy 	int i, n;
3191e51764aSArtem Bityutskiy 	union ubifs_key key;
3201e51764aSArtem Bityutskiy 	const struct ubifs_ch *ch = node;
3211e51764aSArtem Bityutskiy 
3222b1844a8SArtem Bityutskiy 	if (dbg_is_tst_rcvry(c))
3231e51764aSArtem Bityutskiy 		return;
3241e51764aSArtem Bityutskiy 
3251e51764aSArtem Bityutskiy 	/* If the magic is incorrect, just hexdump the first bytes */
3261e51764aSArtem Bityutskiy 	if (le32_to_cpu(ch->magic) != UBIFS_NODE_MAGIC) {
3271e51764aSArtem Bityutskiy 		printk(KERN_DEBUG "Not a node, first %zu bytes:", UBIFS_CH_SZ);
3281e51764aSArtem Bityutskiy 		print_hex_dump(KERN_DEBUG, "", DUMP_PREFIX_OFFSET, 32, 1,
3291e51764aSArtem Bityutskiy 			       (void *)node, UBIFS_CH_SZ, 1);
3301e51764aSArtem Bityutskiy 		return;
3311e51764aSArtem Bityutskiy 	}
3321e51764aSArtem Bityutskiy 
3331e51764aSArtem Bityutskiy 	spin_lock(&dbg_lock);
3341e51764aSArtem Bityutskiy 	dump_ch(node);
3351e51764aSArtem Bityutskiy 
3361e51764aSArtem Bityutskiy 	switch (ch->node_type) {
3371e51764aSArtem Bityutskiy 	case UBIFS_PAD_NODE:
3381e51764aSArtem Bityutskiy 	{
3391e51764aSArtem Bityutskiy 		const struct ubifs_pad_node *pad = node;
3401e51764aSArtem Bityutskiy 
3411e51764aSArtem Bityutskiy 		printk(KERN_DEBUG "\tpad_len        %u\n",
3421e51764aSArtem Bityutskiy 		       le32_to_cpu(pad->pad_len));
3431e51764aSArtem Bityutskiy 		break;
3441e51764aSArtem Bityutskiy 	}
3451e51764aSArtem Bityutskiy 	case UBIFS_SB_NODE:
3461e51764aSArtem Bityutskiy 	{
3471e51764aSArtem Bityutskiy 		const struct ubifs_sb_node *sup = node;
3481e51764aSArtem Bityutskiy 		unsigned int sup_flags = le32_to_cpu(sup->flags);
3491e51764aSArtem Bityutskiy 
3501e51764aSArtem Bityutskiy 		printk(KERN_DEBUG "\tkey_hash       %d (%s)\n",
3511e51764aSArtem Bityutskiy 		       (int)sup->key_hash, get_key_hash(sup->key_hash));
3521e51764aSArtem Bityutskiy 		printk(KERN_DEBUG "\tkey_fmt        %d (%s)\n",
3531e51764aSArtem Bityutskiy 		       (int)sup->key_fmt, get_key_fmt(sup->key_fmt));
3541e51764aSArtem Bityutskiy 		printk(KERN_DEBUG "\tflags          %#x\n", sup_flags);
3551e51764aSArtem Bityutskiy 		printk(KERN_DEBUG "\t  big_lpt      %u\n",
3561e51764aSArtem Bityutskiy 		       !!(sup_flags & UBIFS_FLG_BIGLPT));
3579f58d350SMatthew L. Creech 		printk(KERN_DEBUG "\t  space_fixup  %u\n",
3589f58d350SMatthew L. Creech 		       !!(sup_flags & UBIFS_FLG_SPACE_FIXUP));
3591e51764aSArtem Bityutskiy 		printk(KERN_DEBUG "\tmin_io_size    %u\n",
3601e51764aSArtem Bityutskiy 		       le32_to_cpu(sup->min_io_size));
3611e51764aSArtem Bityutskiy 		printk(KERN_DEBUG "\tleb_size       %u\n",
3621e51764aSArtem Bityutskiy 		       le32_to_cpu(sup->leb_size));
3631e51764aSArtem Bityutskiy 		printk(KERN_DEBUG "\tleb_cnt        %u\n",
3641e51764aSArtem Bityutskiy 		       le32_to_cpu(sup->leb_cnt));
3651e51764aSArtem Bityutskiy 		printk(KERN_DEBUG "\tmax_leb_cnt    %u\n",
3661e51764aSArtem Bityutskiy 		       le32_to_cpu(sup->max_leb_cnt));
3671e51764aSArtem Bityutskiy 		printk(KERN_DEBUG "\tmax_bud_bytes  %llu\n",
3681e51764aSArtem Bityutskiy 		       (unsigned long long)le64_to_cpu(sup->max_bud_bytes));
3691e51764aSArtem Bityutskiy 		printk(KERN_DEBUG "\tlog_lebs       %u\n",
3701e51764aSArtem Bityutskiy 		       le32_to_cpu(sup->log_lebs));
3711e51764aSArtem Bityutskiy 		printk(KERN_DEBUG "\tlpt_lebs       %u\n",
3721e51764aSArtem Bityutskiy 		       le32_to_cpu(sup->lpt_lebs));
3731e51764aSArtem Bityutskiy 		printk(KERN_DEBUG "\torph_lebs      %u\n",
3741e51764aSArtem Bityutskiy 		       le32_to_cpu(sup->orph_lebs));
3751e51764aSArtem Bityutskiy 		printk(KERN_DEBUG "\tjhead_cnt      %u\n",
3761e51764aSArtem Bityutskiy 		       le32_to_cpu(sup->jhead_cnt));
3771e51764aSArtem Bityutskiy 		printk(KERN_DEBUG "\tfanout         %u\n",
3781e51764aSArtem Bityutskiy 		       le32_to_cpu(sup->fanout));
3791e51764aSArtem Bityutskiy 		printk(KERN_DEBUG "\tlsave_cnt      %u\n",
3801e51764aSArtem Bityutskiy 		       le32_to_cpu(sup->lsave_cnt));
3811e51764aSArtem Bityutskiy 		printk(KERN_DEBUG "\tdefault_compr  %u\n",
3821e51764aSArtem Bityutskiy 		       (int)le16_to_cpu(sup->default_compr));
3831e51764aSArtem Bityutskiy 		printk(KERN_DEBUG "\trp_size        %llu\n",
3841e51764aSArtem Bityutskiy 		       (unsigned long long)le64_to_cpu(sup->rp_size));
3851e51764aSArtem Bityutskiy 		printk(KERN_DEBUG "\trp_uid         %u\n",
3861e51764aSArtem Bityutskiy 		       le32_to_cpu(sup->rp_uid));
3871e51764aSArtem Bityutskiy 		printk(KERN_DEBUG "\trp_gid         %u\n",
3881e51764aSArtem Bityutskiy 		       le32_to_cpu(sup->rp_gid));
3891e51764aSArtem Bityutskiy 		printk(KERN_DEBUG "\tfmt_version    %u\n",
3901e51764aSArtem Bityutskiy 		       le32_to_cpu(sup->fmt_version));
3911e51764aSArtem Bityutskiy 		printk(KERN_DEBUG "\ttime_gran      %u\n",
3921e51764aSArtem Bityutskiy 		       le32_to_cpu(sup->time_gran));
3937f2f4e72SJoe Perches 		printk(KERN_DEBUG "\tUUID           %pUB\n",
3947f2f4e72SJoe Perches 		       sup->uuid);
3951e51764aSArtem Bityutskiy 		break;
3961e51764aSArtem Bityutskiy 	}
3971e51764aSArtem Bityutskiy 	case UBIFS_MST_NODE:
3981e51764aSArtem Bityutskiy 	{
3991e51764aSArtem Bityutskiy 		const struct ubifs_mst_node *mst = node;
4001e51764aSArtem Bityutskiy 
4011e51764aSArtem Bityutskiy 		printk(KERN_DEBUG "\thighest_inum   %llu\n",
4021e51764aSArtem Bityutskiy 		       (unsigned long long)le64_to_cpu(mst->highest_inum));
4031e51764aSArtem Bityutskiy 		printk(KERN_DEBUG "\tcommit number  %llu\n",
4041e51764aSArtem Bityutskiy 		       (unsigned long long)le64_to_cpu(mst->cmt_no));
4051e51764aSArtem Bityutskiy 		printk(KERN_DEBUG "\tflags          %#x\n",
4061e51764aSArtem Bityutskiy 		       le32_to_cpu(mst->flags));
4071e51764aSArtem Bityutskiy 		printk(KERN_DEBUG "\tlog_lnum       %u\n",
4081e51764aSArtem Bityutskiy 		       le32_to_cpu(mst->log_lnum));
4091e51764aSArtem Bityutskiy 		printk(KERN_DEBUG "\troot_lnum      %u\n",
4101e51764aSArtem Bityutskiy 		       le32_to_cpu(mst->root_lnum));
4111e51764aSArtem Bityutskiy 		printk(KERN_DEBUG "\troot_offs      %u\n",
4121e51764aSArtem Bityutskiy 		       le32_to_cpu(mst->root_offs));
4131e51764aSArtem Bityutskiy 		printk(KERN_DEBUG "\troot_len       %u\n",
4141e51764aSArtem Bityutskiy 		       le32_to_cpu(mst->root_len));
4151e51764aSArtem Bityutskiy 		printk(KERN_DEBUG "\tgc_lnum        %u\n",
4161e51764aSArtem Bityutskiy 		       le32_to_cpu(mst->gc_lnum));
4171e51764aSArtem Bityutskiy 		printk(KERN_DEBUG "\tihead_lnum     %u\n",
4181e51764aSArtem Bityutskiy 		       le32_to_cpu(mst->ihead_lnum));
4191e51764aSArtem Bityutskiy 		printk(KERN_DEBUG "\tihead_offs     %u\n",
4201e51764aSArtem Bityutskiy 		       le32_to_cpu(mst->ihead_offs));
4210ecb9529SHarvey Harrison 		printk(KERN_DEBUG "\tindex_size     %llu\n",
4220ecb9529SHarvey Harrison 		       (unsigned long long)le64_to_cpu(mst->index_size));
4231e51764aSArtem Bityutskiy 		printk(KERN_DEBUG "\tlpt_lnum       %u\n",
4241e51764aSArtem Bityutskiy 		       le32_to_cpu(mst->lpt_lnum));
4251e51764aSArtem Bityutskiy 		printk(KERN_DEBUG "\tlpt_offs       %u\n",
4261e51764aSArtem Bityutskiy 		       le32_to_cpu(mst->lpt_offs));
4271e51764aSArtem Bityutskiy 		printk(KERN_DEBUG "\tnhead_lnum     %u\n",
4281e51764aSArtem Bityutskiy 		       le32_to_cpu(mst->nhead_lnum));
4291e51764aSArtem Bityutskiy 		printk(KERN_DEBUG "\tnhead_offs     %u\n",
4301e51764aSArtem Bityutskiy 		       le32_to_cpu(mst->nhead_offs));
4311e51764aSArtem Bityutskiy 		printk(KERN_DEBUG "\tltab_lnum      %u\n",
4321e51764aSArtem Bityutskiy 		       le32_to_cpu(mst->ltab_lnum));
4331e51764aSArtem Bityutskiy 		printk(KERN_DEBUG "\tltab_offs      %u\n",
4341e51764aSArtem Bityutskiy 		       le32_to_cpu(mst->ltab_offs));
4351e51764aSArtem Bityutskiy 		printk(KERN_DEBUG "\tlsave_lnum     %u\n",
4361e51764aSArtem Bityutskiy 		       le32_to_cpu(mst->lsave_lnum));
4371e51764aSArtem Bityutskiy 		printk(KERN_DEBUG "\tlsave_offs     %u\n",
4381e51764aSArtem Bityutskiy 		       le32_to_cpu(mst->lsave_offs));
4391e51764aSArtem Bityutskiy 		printk(KERN_DEBUG "\tlscan_lnum     %u\n",
4401e51764aSArtem Bityutskiy 		       le32_to_cpu(mst->lscan_lnum));
4411e51764aSArtem Bityutskiy 		printk(KERN_DEBUG "\tleb_cnt        %u\n",
4421e51764aSArtem Bityutskiy 		       le32_to_cpu(mst->leb_cnt));
4431e51764aSArtem Bityutskiy 		printk(KERN_DEBUG "\tempty_lebs     %u\n",
4441e51764aSArtem Bityutskiy 		       le32_to_cpu(mst->empty_lebs));
4451e51764aSArtem Bityutskiy 		printk(KERN_DEBUG "\tidx_lebs       %u\n",
4461e51764aSArtem Bityutskiy 		       le32_to_cpu(mst->idx_lebs));
4471e51764aSArtem Bityutskiy 		printk(KERN_DEBUG "\ttotal_free     %llu\n",
4481e51764aSArtem Bityutskiy 		       (unsigned long long)le64_to_cpu(mst->total_free));
4491e51764aSArtem Bityutskiy 		printk(KERN_DEBUG "\ttotal_dirty    %llu\n",
4501e51764aSArtem Bityutskiy 		       (unsigned long long)le64_to_cpu(mst->total_dirty));
4511e51764aSArtem Bityutskiy 		printk(KERN_DEBUG "\ttotal_used     %llu\n",
4521e51764aSArtem Bityutskiy 		       (unsigned long long)le64_to_cpu(mst->total_used));
4531e51764aSArtem Bityutskiy 		printk(KERN_DEBUG "\ttotal_dead     %llu\n",
4541e51764aSArtem Bityutskiy 		       (unsigned long long)le64_to_cpu(mst->total_dead));
4551e51764aSArtem Bityutskiy 		printk(KERN_DEBUG "\ttotal_dark     %llu\n",
4561e51764aSArtem Bityutskiy 		       (unsigned long long)le64_to_cpu(mst->total_dark));
4571e51764aSArtem Bityutskiy 		break;
4581e51764aSArtem Bityutskiy 	}
4591e51764aSArtem Bityutskiy 	case UBIFS_REF_NODE:
4601e51764aSArtem Bityutskiy 	{
4611e51764aSArtem Bityutskiy 		const struct ubifs_ref_node *ref = node;
4621e51764aSArtem Bityutskiy 
4631e51764aSArtem Bityutskiy 		printk(KERN_DEBUG "\tlnum           %u\n",
4641e51764aSArtem Bityutskiy 		       le32_to_cpu(ref->lnum));
4651e51764aSArtem Bityutskiy 		printk(KERN_DEBUG "\toffs           %u\n",
4661e51764aSArtem Bityutskiy 		       le32_to_cpu(ref->offs));
4671e51764aSArtem Bityutskiy 		printk(KERN_DEBUG "\tjhead          %u\n",
4681e51764aSArtem Bityutskiy 		       le32_to_cpu(ref->jhead));
4691e51764aSArtem Bityutskiy 		break;
4701e51764aSArtem Bityutskiy 	}
4711e51764aSArtem Bityutskiy 	case UBIFS_INO_NODE:
4721e51764aSArtem Bityutskiy 	{
4731e51764aSArtem Bityutskiy 		const struct ubifs_ino_node *ino = node;
4741e51764aSArtem Bityutskiy 
4751e51764aSArtem Bityutskiy 		key_read(c, &ino->key, &key);
4761e51764aSArtem Bityutskiy 		printk(KERN_DEBUG "\tkey            %s\n", DBGKEY(&key));
4771e51764aSArtem Bityutskiy 		printk(KERN_DEBUG "\tcreat_sqnum    %llu\n",
4781e51764aSArtem Bityutskiy 		       (unsigned long long)le64_to_cpu(ino->creat_sqnum));
4791e51764aSArtem Bityutskiy 		printk(KERN_DEBUG "\tsize           %llu\n",
4801e51764aSArtem Bityutskiy 		       (unsigned long long)le64_to_cpu(ino->size));
4811e51764aSArtem Bityutskiy 		printk(KERN_DEBUG "\tnlink          %u\n",
4821e51764aSArtem Bityutskiy 		       le32_to_cpu(ino->nlink));
4831e51764aSArtem Bityutskiy 		printk(KERN_DEBUG "\tatime          %lld.%u\n",
4841e51764aSArtem Bityutskiy 		       (long long)le64_to_cpu(ino->atime_sec),
4851e51764aSArtem Bityutskiy 		       le32_to_cpu(ino->atime_nsec));
4861e51764aSArtem Bityutskiy 		printk(KERN_DEBUG "\tmtime          %lld.%u\n",
4871e51764aSArtem Bityutskiy 		       (long long)le64_to_cpu(ino->mtime_sec),
4881e51764aSArtem Bityutskiy 		       le32_to_cpu(ino->mtime_nsec));
4891e51764aSArtem Bityutskiy 		printk(KERN_DEBUG "\tctime          %lld.%u\n",
4901e51764aSArtem Bityutskiy 		       (long long)le64_to_cpu(ino->ctime_sec),
4911e51764aSArtem Bityutskiy 		       le32_to_cpu(ino->ctime_nsec));
4921e51764aSArtem Bityutskiy 		printk(KERN_DEBUG "\tuid            %u\n",
4931e51764aSArtem Bityutskiy 		       le32_to_cpu(ino->uid));
4941e51764aSArtem Bityutskiy 		printk(KERN_DEBUG "\tgid            %u\n",
4951e51764aSArtem Bityutskiy 		       le32_to_cpu(ino->gid));
4961e51764aSArtem Bityutskiy 		printk(KERN_DEBUG "\tmode           %u\n",
4971e51764aSArtem Bityutskiy 		       le32_to_cpu(ino->mode));
4981e51764aSArtem Bityutskiy 		printk(KERN_DEBUG "\tflags          %#x\n",
4991e51764aSArtem Bityutskiy 		       le32_to_cpu(ino->flags));
5001e51764aSArtem Bityutskiy 		printk(KERN_DEBUG "\txattr_cnt      %u\n",
5011e51764aSArtem Bityutskiy 		       le32_to_cpu(ino->xattr_cnt));
5021e51764aSArtem Bityutskiy 		printk(KERN_DEBUG "\txattr_size     %u\n",
5031e51764aSArtem Bityutskiy 		       le32_to_cpu(ino->xattr_size));
5041e51764aSArtem Bityutskiy 		printk(KERN_DEBUG "\txattr_names    %u\n",
5051e51764aSArtem Bityutskiy 		       le32_to_cpu(ino->xattr_names));
5061e51764aSArtem Bityutskiy 		printk(KERN_DEBUG "\tcompr_type     %#x\n",
5071e51764aSArtem Bityutskiy 		       (int)le16_to_cpu(ino->compr_type));
5081e51764aSArtem Bityutskiy 		printk(KERN_DEBUG "\tdata len       %u\n",
5091e51764aSArtem Bityutskiy 		       le32_to_cpu(ino->data_len));
5101e51764aSArtem Bityutskiy 		break;
5111e51764aSArtem Bityutskiy 	}
5121e51764aSArtem Bityutskiy 	case UBIFS_DENT_NODE:
5131e51764aSArtem Bityutskiy 	case UBIFS_XENT_NODE:
5141e51764aSArtem Bityutskiy 	{
5151e51764aSArtem Bityutskiy 		const struct ubifs_dent_node *dent = node;
5161e51764aSArtem Bityutskiy 		int nlen = le16_to_cpu(dent->nlen);
5171e51764aSArtem Bityutskiy 
5181e51764aSArtem Bityutskiy 		key_read(c, &dent->key, &key);
5191e51764aSArtem Bityutskiy 		printk(KERN_DEBUG "\tkey            %s\n", DBGKEY(&key));
5201e51764aSArtem Bityutskiy 		printk(KERN_DEBUG "\tinum           %llu\n",
5211e51764aSArtem Bityutskiy 		       (unsigned long long)le64_to_cpu(dent->inum));
5221e51764aSArtem Bityutskiy 		printk(KERN_DEBUG "\ttype           %d\n", (int)dent->type);
5231e51764aSArtem Bityutskiy 		printk(KERN_DEBUG "\tnlen           %d\n", nlen);
5241e51764aSArtem Bityutskiy 		printk(KERN_DEBUG "\tname           ");
5251e51764aSArtem Bityutskiy 
5261e51764aSArtem Bityutskiy 		if (nlen > UBIFS_MAX_NLEN)
5271e51764aSArtem Bityutskiy 			printk(KERN_DEBUG "(bad name length, not printing, "
5281e51764aSArtem Bityutskiy 					  "bad or corrupted node)");
5291e51764aSArtem Bityutskiy 		else {
5301e51764aSArtem Bityutskiy 			for (i = 0; i < nlen && dent->name[i]; i++)
531c9927c3eSArtem Bityutskiy 				printk(KERN_CONT "%c", dent->name[i]);
5321e51764aSArtem Bityutskiy 		}
533c9927c3eSArtem Bityutskiy 		printk(KERN_CONT "\n");
5341e51764aSArtem Bityutskiy 
5351e51764aSArtem Bityutskiy 		break;
5361e51764aSArtem Bityutskiy 	}
5371e51764aSArtem Bityutskiy 	case UBIFS_DATA_NODE:
5381e51764aSArtem Bityutskiy 	{
5391e51764aSArtem Bityutskiy 		const struct ubifs_data_node *dn = node;
5401e51764aSArtem Bityutskiy 		int dlen = le32_to_cpu(ch->len) - UBIFS_DATA_NODE_SZ;
5411e51764aSArtem Bityutskiy 
5421e51764aSArtem Bityutskiy 		key_read(c, &dn->key, &key);
5431e51764aSArtem Bityutskiy 		printk(KERN_DEBUG "\tkey            %s\n", DBGKEY(&key));
5441e51764aSArtem Bityutskiy 		printk(KERN_DEBUG "\tsize           %u\n",
5451e51764aSArtem Bityutskiy 		       le32_to_cpu(dn->size));
5461e51764aSArtem Bityutskiy 		printk(KERN_DEBUG "\tcompr_typ      %d\n",
5471e51764aSArtem Bityutskiy 		       (int)le16_to_cpu(dn->compr_type));
5481e51764aSArtem Bityutskiy 		printk(KERN_DEBUG "\tdata size      %d\n",
5491e51764aSArtem Bityutskiy 		       dlen);
5501e51764aSArtem Bityutskiy 		printk(KERN_DEBUG "\tdata:\n");
5511e51764aSArtem Bityutskiy 		print_hex_dump(KERN_DEBUG, "\t", DUMP_PREFIX_OFFSET, 32, 1,
5521e51764aSArtem Bityutskiy 			       (void *)&dn->data, dlen, 0);
5531e51764aSArtem Bityutskiy 		break;
5541e51764aSArtem Bityutskiy 	}
5551e51764aSArtem Bityutskiy 	case UBIFS_TRUN_NODE:
5561e51764aSArtem Bityutskiy 	{
5571e51764aSArtem Bityutskiy 		const struct ubifs_trun_node *trun = node;
5581e51764aSArtem Bityutskiy 
5591e51764aSArtem Bityutskiy 		printk(KERN_DEBUG "\tinum           %u\n",
5601e51764aSArtem Bityutskiy 		       le32_to_cpu(trun->inum));
5611e51764aSArtem Bityutskiy 		printk(KERN_DEBUG "\told_size       %llu\n",
5621e51764aSArtem Bityutskiy 		       (unsigned long long)le64_to_cpu(trun->old_size));
5631e51764aSArtem Bityutskiy 		printk(KERN_DEBUG "\tnew_size       %llu\n",
5641e51764aSArtem Bityutskiy 		       (unsigned long long)le64_to_cpu(trun->new_size));
5651e51764aSArtem Bityutskiy 		break;
5661e51764aSArtem Bityutskiy 	}
5671e51764aSArtem Bityutskiy 	case UBIFS_IDX_NODE:
5681e51764aSArtem Bityutskiy 	{
5691e51764aSArtem Bityutskiy 		const struct ubifs_idx_node *idx = node;
5701e51764aSArtem Bityutskiy 
5711e51764aSArtem Bityutskiy 		n = le16_to_cpu(idx->child_cnt);
5721e51764aSArtem Bityutskiy 		printk(KERN_DEBUG "\tchild_cnt      %d\n", n);
5731e51764aSArtem Bityutskiy 		printk(KERN_DEBUG "\tlevel          %d\n",
5741e51764aSArtem Bityutskiy 		       (int)le16_to_cpu(idx->level));
5751e51764aSArtem Bityutskiy 		printk(KERN_DEBUG "\tBranches:\n");
5761e51764aSArtem Bityutskiy 
5771e51764aSArtem Bityutskiy 		for (i = 0; i < n && i < c->fanout - 1; i++) {
5781e51764aSArtem Bityutskiy 			const struct ubifs_branch *br;
5791e51764aSArtem Bityutskiy 
5801e51764aSArtem Bityutskiy 			br = ubifs_idx_branch(c, idx, i);
5811e51764aSArtem Bityutskiy 			key_read(c, &br->key, &key);
5821e51764aSArtem Bityutskiy 			printk(KERN_DEBUG "\t%d: LEB %d:%d len %d key %s\n",
5831e51764aSArtem Bityutskiy 			       i, le32_to_cpu(br->lnum), le32_to_cpu(br->offs),
5841e51764aSArtem Bityutskiy 			       le32_to_cpu(br->len), DBGKEY(&key));
5851e51764aSArtem Bityutskiy 		}
5861e51764aSArtem Bityutskiy 		break;
5871e51764aSArtem Bityutskiy 	}
5881e51764aSArtem Bityutskiy 	case UBIFS_CS_NODE:
5891e51764aSArtem Bityutskiy 		break;
5901e51764aSArtem Bityutskiy 	case UBIFS_ORPH_NODE:
5911e51764aSArtem Bityutskiy 	{
5921e51764aSArtem Bityutskiy 		const struct ubifs_orph_node *orph = node;
5931e51764aSArtem Bityutskiy 
5941e51764aSArtem Bityutskiy 		printk(KERN_DEBUG "\tcommit number  %llu\n",
5951e51764aSArtem Bityutskiy 		       (unsigned long long)
5961e51764aSArtem Bityutskiy 				le64_to_cpu(orph->cmt_no) & LLONG_MAX);
5971e51764aSArtem Bityutskiy 		printk(KERN_DEBUG "\tlast node flag %llu\n",
5981e51764aSArtem Bityutskiy 		       (unsigned long long)(le64_to_cpu(orph->cmt_no)) >> 63);
5991e51764aSArtem Bityutskiy 		n = (le32_to_cpu(ch->len) - UBIFS_ORPH_NODE_SZ) >> 3;
6001e51764aSArtem Bityutskiy 		printk(KERN_DEBUG "\t%d orphan inode numbers:\n", n);
6011e51764aSArtem Bityutskiy 		for (i = 0; i < n; i++)
6021e51764aSArtem Bityutskiy 			printk(KERN_DEBUG "\t  ino %llu\n",
6037424bac8SAlexander Beregalov 			       (unsigned long long)le64_to_cpu(orph->inos[i]));
6041e51764aSArtem Bityutskiy 		break;
6051e51764aSArtem Bityutskiy 	}
6061e51764aSArtem Bityutskiy 	default:
6071e51764aSArtem Bityutskiy 		printk(KERN_DEBUG "node type %d was not recognized\n",
6081e51764aSArtem Bityutskiy 		       (int)ch->node_type);
6091e51764aSArtem Bityutskiy 	}
6101e51764aSArtem Bityutskiy 	spin_unlock(&dbg_lock);
6111e51764aSArtem Bityutskiy }
6121e51764aSArtem Bityutskiy 
6131e51764aSArtem Bityutskiy void dbg_dump_budget_req(const struct ubifs_budget_req *req)
6141e51764aSArtem Bityutskiy {
6151e51764aSArtem Bityutskiy 	spin_lock(&dbg_lock);
6161e51764aSArtem Bityutskiy 	printk(KERN_DEBUG "Budgeting request: new_ino %d, dirtied_ino %d\n",
6171e51764aSArtem Bityutskiy 	       req->new_ino, req->dirtied_ino);
6181e51764aSArtem Bityutskiy 	printk(KERN_DEBUG "\tnew_ino_d   %d, dirtied_ino_d %d\n",
6191e51764aSArtem Bityutskiy 	       req->new_ino_d, req->dirtied_ino_d);
6201e51764aSArtem Bityutskiy 	printk(KERN_DEBUG "\tnew_page    %d, dirtied_page %d\n",
6211e51764aSArtem Bityutskiy 	       req->new_page, req->dirtied_page);
6221e51764aSArtem Bityutskiy 	printk(KERN_DEBUG "\tnew_dent    %d, mod_dent     %d\n",
6231e51764aSArtem Bityutskiy 	       req->new_dent, req->mod_dent);
6241e51764aSArtem Bityutskiy 	printk(KERN_DEBUG "\tidx_growth  %d\n", req->idx_growth);
6251e51764aSArtem Bityutskiy 	printk(KERN_DEBUG "\tdata_growth %d dd_growth     %d\n",
6261e51764aSArtem Bityutskiy 	       req->data_growth, req->dd_growth);
6271e51764aSArtem Bityutskiy 	spin_unlock(&dbg_lock);
6281e51764aSArtem Bityutskiy }
6291e51764aSArtem Bityutskiy 
6301e51764aSArtem Bityutskiy void dbg_dump_lstats(const struct ubifs_lp_stats *lst)
6311e51764aSArtem Bityutskiy {
6321e51764aSArtem Bityutskiy 	spin_lock(&dbg_lock);
6331de94159SArtem Bityutskiy 	printk(KERN_DEBUG "(pid %d) Lprops statistics: empty_lebs %d, "
6341de94159SArtem Bityutskiy 	       "idx_lebs  %d\n", current->pid, lst->empty_lebs, lst->idx_lebs);
6351e51764aSArtem Bityutskiy 	printk(KERN_DEBUG "\ttaken_empty_lebs %d, total_free %lld, "
6361e51764aSArtem Bityutskiy 	       "total_dirty %lld\n", lst->taken_empty_lebs, lst->total_free,
6371e51764aSArtem Bityutskiy 	       lst->total_dirty);
6381e51764aSArtem Bityutskiy 	printk(KERN_DEBUG "\ttotal_used %lld, total_dark %lld, "
6391e51764aSArtem Bityutskiy 	       "total_dead %lld\n", lst->total_used, lst->total_dark,
6401e51764aSArtem Bityutskiy 	       lst->total_dead);
6411e51764aSArtem Bityutskiy 	spin_unlock(&dbg_lock);
6421e51764aSArtem Bityutskiy }
6431e51764aSArtem Bityutskiy 
644f1bd66afSArtem Bityutskiy void dbg_dump_budg(struct ubifs_info *c, const struct ubifs_budg_info *bi)
6451e51764aSArtem Bityutskiy {
6461e51764aSArtem Bityutskiy 	int i;
6471e51764aSArtem Bityutskiy 	struct rb_node *rb;
6481e51764aSArtem Bityutskiy 	struct ubifs_bud *bud;
6491e51764aSArtem Bityutskiy 	struct ubifs_gced_idx_leb *idx_gc;
65021a60258SArtem Bityutskiy 	long long available, outstanding, free;
6511e51764aSArtem Bityutskiy 
6528ff83089SArtem Bityutskiy 	spin_lock(&c->space_lock);
6531e51764aSArtem Bityutskiy 	spin_lock(&dbg_lock);
6548c3067e4SArtem Bityutskiy 	printk(KERN_DEBUG "(pid %d) Budgeting info: data budget sum %lld, "
6558c3067e4SArtem Bityutskiy 	       "total budget sum %lld\n", current->pid,
656f1bd66afSArtem Bityutskiy 	       bi->data_growth + bi->dd_growth,
657f1bd66afSArtem Bityutskiy 	       bi->data_growth + bi->dd_growth + bi->idx_growth);
6588c3067e4SArtem Bityutskiy 	printk(KERN_DEBUG "\tbudg_data_growth %lld, budg_dd_growth %lld, "
659f1bd66afSArtem Bityutskiy 	       "budg_idx_growth %lld\n", bi->data_growth, bi->dd_growth,
660f1bd66afSArtem Bityutskiy 	       bi->idx_growth);
6618c3067e4SArtem Bityutskiy 	printk(KERN_DEBUG "\tmin_idx_lebs %d, old_idx_sz %llu, "
662f1bd66afSArtem Bityutskiy 	       "uncommitted_idx %lld\n", bi->min_idx_lebs, bi->old_idx_sz,
663f1bd66afSArtem Bityutskiy 	       bi->uncommitted_idx);
6648c3067e4SArtem Bityutskiy 	printk(KERN_DEBUG "\tpage_budget %d, inode_budget %d, dent_budget %d\n",
665f1bd66afSArtem Bityutskiy 	       bi->page_budget, bi->inode_budget, bi->dent_budget);
6668c3067e4SArtem Bityutskiy 	printk(KERN_DEBUG "\tnospace %u, nospace_rp %u\n",
667f1bd66afSArtem Bityutskiy 	       bi->nospace, bi->nospace_rp);
6688c3067e4SArtem Bityutskiy 	printk(KERN_DEBUG "\tdark_wm %d, dead_wm %d, max_idx_node_sz %d\n",
6698c3067e4SArtem Bityutskiy 	       c->dark_wm, c->dead_wm, c->max_idx_node_sz);
670f1bd66afSArtem Bityutskiy 
671f1bd66afSArtem Bityutskiy 	if (bi != &c->bi)
672f1bd66afSArtem Bityutskiy 		/*
673f1bd66afSArtem Bityutskiy 		 * If we are dumping saved budgeting data, do not print
674f1bd66afSArtem Bityutskiy 		 * additional information which is about the current state, not
675f1bd66afSArtem Bityutskiy 		 * the old one which corresponded to the saved budgeting data.
676f1bd66afSArtem Bityutskiy 		 */
677f1bd66afSArtem Bityutskiy 		goto out_unlock;
678f1bd66afSArtem Bityutskiy 
6798c3067e4SArtem Bityutskiy 	printk(KERN_DEBUG "\tfreeable_cnt %d, calc_idx_sz %lld, idx_gc_cnt %d\n",
6808c3067e4SArtem Bityutskiy 	       c->freeable_cnt, c->calc_idx_sz, c->idx_gc_cnt);
6811e51764aSArtem Bityutskiy 	printk(KERN_DEBUG "\tdirty_pg_cnt %ld, dirty_zn_cnt %ld, "
6821e51764aSArtem Bityutskiy 	       "clean_zn_cnt %ld\n", atomic_long_read(&c->dirty_pg_cnt),
6831e51764aSArtem Bityutskiy 	       atomic_long_read(&c->dirty_zn_cnt),
6841e51764aSArtem Bityutskiy 	       atomic_long_read(&c->clean_zn_cnt));
6851e51764aSArtem Bityutskiy 	printk(KERN_DEBUG "\tgc_lnum %d, ihead_lnum %d\n",
6861e51764aSArtem Bityutskiy 	       c->gc_lnum, c->ihead_lnum);
687f1bd66afSArtem Bityutskiy 
68884abf972SArtem Bityutskiy 	/* If we are in R/O mode, journal heads do not exist */
68984abf972SArtem Bityutskiy 	if (c->jheads)
6901e51764aSArtem Bityutskiy 		for (i = 0; i < c->jhead_cnt; i++)
69177a7ae58SArtem Bityutskiy 			printk(KERN_DEBUG "\tjhead %s\t LEB %d\n",
69277a7ae58SArtem Bityutskiy 			       dbg_jhead(c->jheads[i].wbuf.jhead),
69377a7ae58SArtem Bityutskiy 			       c->jheads[i].wbuf.lnum);
6941e51764aSArtem Bityutskiy 	for (rb = rb_first(&c->buds); rb; rb = rb_next(rb)) {
6951e51764aSArtem Bityutskiy 		bud = rb_entry(rb, struct ubifs_bud, rb);
6961e51764aSArtem Bityutskiy 		printk(KERN_DEBUG "\tbud LEB %d\n", bud->lnum);
6971e51764aSArtem Bityutskiy 	}
6981e51764aSArtem Bityutskiy 	list_for_each_entry(bud, &c->old_buds, list)
6991e51764aSArtem Bityutskiy 		printk(KERN_DEBUG "\told bud LEB %d\n", bud->lnum);
7001e51764aSArtem Bityutskiy 	list_for_each_entry(idx_gc, &c->idx_gc, list)
7011e51764aSArtem Bityutskiy 		printk(KERN_DEBUG "\tGC'ed idx LEB %d unmap %d\n",
7021e51764aSArtem Bityutskiy 		       idx_gc->lnum, idx_gc->unmap);
7031e51764aSArtem Bityutskiy 	printk(KERN_DEBUG "\tcommit state %d\n", c->cmt_state);
70421a60258SArtem Bityutskiy 
70521a60258SArtem Bityutskiy 	/* Print budgeting predictions */
706b137545cSArtem Bityutskiy 	available = ubifs_calc_available(c, c->bi.min_idx_lebs);
707b137545cSArtem Bityutskiy 	outstanding = c->bi.data_growth + c->bi.dd_growth;
70884abf972SArtem Bityutskiy 	free = ubifs_get_free_space_nolock(c);
70921a60258SArtem Bityutskiy 	printk(KERN_DEBUG "Budgeting predictions:\n");
71021a60258SArtem Bityutskiy 	printk(KERN_DEBUG "\tavailable: %lld, outstanding %lld, free %lld\n",
71121a60258SArtem Bityutskiy 	       available, outstanding, free);
712f1bd66afSArtem Bityutskiy out_unlock:
7131e51764aSArtem Bityutskiy 	spin_unlock(&dbg_lock);
7148ff83089SArtem Bityutskiy 	spin_unlock(&c->space_lock);
7151e51764aSArtem Bityutskiy }
7161e51764aSArtem Bityutskiy 
7171e51764aSArtem Bityutskiy void dbg_dump_lprop(const struct ubifs_info *c, const struct ubifs_lprops *lp)
7181e51764aSArtem Bityutskiy {
719be9e62a7SArtem Bityutskiy 	int i, spc, dark = 0, dead = 0;
720be9e62a7SArtem Bityutskiy 	struct rb_node *rb;
721be9e62a7SArtem Bityutskiy 	struct ubifs_bud *bud;
722be9e62a7SArtem Bityutskiy 
723be9e62a7SArtem Bityutskiy 	spc = lp->free + lp->dirty;
724be9e62a7SArtem Bityutskiy 	if (spc < c->dead_wm)
725be9e62a7SArtem Bityutskiy 		dead = spc;
726be9e62a7SArtem Bityutskiy 	else
727be9e62a7SArtem Bityutskiy 		dark = ubifs_calc_dark(c, spc);
728be9e62a7SArtem Bityutskiy 
729be9e62a7SArtem Bityutskiy 	if (lp->flags & LPROPS_INDEX)
730be9e62a7SArtem Bityutskiy 		printk(KERN_DEBUG "LEB %-7d free %-8d dirty %-8d used %-8d "
731be9e62a7SArtem Bityutskiy 		       "free + dirty %-8d flags %#x (", lp->lnum, lp->free,
732be9e62a7SArtem Bityutskiy 		       lp->dirty, c->leb_size - spc, spc, lp->flags);
733be9e62a7SArtem Bityutskiy 	else
734be9e62a7SArtem Bityutskiy 		printk(KERN_DEBUG "LEB %-7d free %-8d dirty %-8d used %-8d "
735be9e62a7SArtem Bityutskiy 		       "free + dirty %-8d dark %-4d dead %-4d nodes fit %-3d "
736be9e62a7SArtem Bityutskiy 		       "flags %#-4x (", lp->lnum, lp->free, lp->dirty,
737be9e62a7SArtem Bityutskiy 		       c->leb_size - spc, spc, dark, dead,
738be9e62a7SArtem Bityutskiy 		       (int)(spc / UBIFS_MAX_NODE_SZ), lp->flags);
739be9e62a7SArtem Bityutskiy 
740be9e62a7SArtem Bityutskiy 	if (lp->flags & LPROPS_TAKEN) {
741be9e62a7SArtem Bityutskiy 		if (lp->flags & LPROPS_INDEX)
742be9e62a7SArtem Bityutskiy 			printk(KERN_CONT "index, taken");
743be9e62a7SArtem Bityutskiy 		else
744be9e62a7SArtem Bityutskiy 			printk(KERN_CONT "taken");
745be9e62a7SArtem Bityutskiy 	} else {
746be9e62a7SArtem Bityutskiy 		const char *s;
747be9e62a7SArtem Bityutskiy 
748be9e62a7SArtem Bityutskiy 		if (lp->flags & LPROPS_INDEX) {
749be9e62a7SArtem Bityutskiy 			switch (lp->flags & LPROPS_CAT_MASK) {
750be9e62a7SArtem Bityutskiy 			case LPROPS_DIRTY_IDX:
751be9e62a7SArtem Bityutskiy 				s = "dirty index";
752be9e62a7SArtem Bityutskiy 				break;
753be9e62a7SArtem Bityutskiy 			case LPROPS_FRDI_IDX:
754be9e62a7SArtem Bityutskiy 				s = "freeable index";
755be9e62a7SArtem Bityutskiy 				break;
756be9e62a7SArtem Bityutskiy 			default:
757be9e62a7SArtem Bityutskiy 				s = "index";
758be9e62a7SArtem Bityutskiy 			}
759be9e62a7SArtem Bityutskiy 		} else {
760be9e62a7SArtem Bityutskiy 			switch (lp->flags & LPROPS_CAT_MASK) {
761be9e62a7SArtem Bityutskiy 			case LPROPS_UNCAT:
762be9e62a7SArtem Bityutskiy 				s = "not categorized";
763be9e62a7SArtem Bityutskiy 				break;
764be9e62a7SArtem Bityutskiy 			case LPROPS_DIRTY:
765be9e62a7SArtem Bityutskiy 				s = "dirty";
766be9e62a7SArtem Bityutskiy 				break;
767be9e62a7SArtem Bityutskiy 			case LPROPS_FREE:
768be9e62a7SArtem Bityutskiy 				s = "free";
769be9e62a7SArtem Bityutskiy 				break;
770be9e62a7SArtem Bityutskiy 			case LPROPS_EMPTY:
771be9e62a7SArtem Bityutskiy 				s = "empty";
772be9e62a7SArtem Bityutskiy 				break;
773be9e62a7SArtem Bityutskiy 			case LPROPS_FREEABLE:
774be9e62a7SArtem Bityutskiy 				s = "freeable";
775be9e62a7SArtem Bityutskiy 				break;
776be9e62a7SArtem Bityutskiy 			default:
777be9e62a7SArtem Bityutskiy 				s = NULL;
778be9e62a7SArtem Bityutskiy 				break;
779be9e62a7SArtem Bityutskiy 			}
780be9e62a7SArtem Bityutskiy 		}
781be9e62a7SArtem Bityutskiy 		printk(KERN_CONT "%s", s);
782be9e62a7SArtem Bityutskiy 	}
783be9e62a7SArtem Bityutskiy 
784be9e62a7SArtem Bityutskiy 	for (rb = rb_first((struct rb_root *)&c->buds); rb; rb = rb_next(rb)) {
785be9e62a7SArtem Bityutskiy 		bud = rb_entry(rb, struct ubifs_bud, rb);
786be9e62a7SArtem Bityutskiy 		if (bud->lnum == lp->lnum) {
787be9e62a7SArtem Bityutskiy 			int head = 0;
788be9e62a7SArtem Bityutskiy 			for (i = 0; i < c->jhead_cnt; i++) {
7891321657dSArtem Bityutskiy 				/*
7901321657dSArtem Bityutskiy 				 * Note, if we are in R/O mode or in the middle
7911321657dSArtem Bityutskiy 				 * of mounting/re-mounting, the write-buffers do
7921321657dSArtem Bityutskiy 				 * not exist.
7931321657dSArtem Bityutskiy 				 */
7941321657dSArtem Bityutskiy 				if (c->jheads &&
7951321657dSArtem Bityutskiy 				    lp->lnum == c->jheads[i].wbuf.lnum) {
796be9e62a7SArtem Bityutskiy 					printk(KERN_CONT ", jhead %s",
797be9e62a7SArtem Bityutskiy 					       dbg_jhead(i));
798be9e62a7SArtem Bityutskiy 					head = 1;
799be9e62a7SArtem Bityutskiy 				}
800be9e62a7SArtem Bityutskiy 			}
801be9e62a7SArtem Bityutskiy 			if (!head)
802be9e62a7SArtem Bityutskiy 				printk(KERN_CONT ", bud of jhead %s",
803be9e62a7SArtem Bityutskiy 				       dbg_jhead(bud->jhead));
804be9e62a7SArtem Bityutskiy 		}
805be9e62a7SArtem Bityutskiy 	}
806be9e62a7SArtem Bityutskiy 	if (lp->lnum == c->gc_lnum)
807be9e62a7SArtem Bityutskiy 		printk(KERN_CONT ", GC LEB");
808be9e62a7SArtem Bityutskiy 	printk(KERN_CONT ")\n");
8091e51764aSArtem Bityutskiy }
8101e51764aSArtem Bityutskiy 
8111e51764aSArtem Bityutskiy void dbg_dump_lprops(struct ubifs_info *c)
8121e51764aSArtem Bityutskiy {
8131e51764aSArtem Bityutskiy 	int lnum, err;
8141e51764aSArtem Bityutskiy 	struct ubifs_lprops lp;
8151e51764aSArtem Bityutskiy 	struct ubifs_lp_stats lst;
8161e51764aSArtem Bityutskiy 
8172ba5f7aeSArtem Bityutskiy 	printk(KERN_DEBUG "(pid %d) start dumping LEB properties\n",
8182ba5f7aeSArtem Bityutskiy 	       current->pid);
8191e51764aSArtem Bityutskiy 	ubifs_get_lp_stats(c, &lst);
8201e51764aSArtem Bityutskiy 	dbg_dump_lstats(&lst);
8211e51764aSArtem Bityutskiy 
8221e51764aSArtem Bityutskiy 	for (lnum = c->main_first; lnum < c->leb_cnt; lnum++) {
8231e51764aSArtem Bityutskiy 		err = ubifs_read_one_lp(c, lnum, &lp);
8241e51764aSArtem Bityutskiy 		if (err)
8251e51764aSArtem Bityutskiy 			ubifs_err("cannot read lprops for LEB %d", lnum);
8261e51764aSArtem Bityutskiy 
8271e51764aSArtem Bityutskiy 		dbg_dump_lprop(c, &lp);
8281e51764aSArtem Bityutskiy 	}
8292ba5f7aeSArtem Bityutskiy 	printk(KERN_DEBUG "(pid %d) finish dumping LEB properties\n",
8302ba5f7aeSArtem Bityutskiy 	       current->pid);
8311e51764aSArtem Bityutskiy }
8321e51764aSArtem Bityutskiy 
83373944a6dSAdrian Hunter void dbg_dump_lpt_info(struct ubifs_info *c)
83473944a6dSAdrian Hunter {
83573944a6dSAdrian Hunter 	int i;
83673944a6dSAdrian Hunter 
83773944a6dSAdrian Hunter 	spin_lock(&dbg_lock);
8382ba5f7aeSArtem Bityutskiy 	printk(KERN_DEBUG "(pid %d) dumping LPT information\n", current->pid);
83973944a6dSAdrian Hunter 	printk(KERN_DEBUG "\tlpt_sz:        %lld\n", c->lpt_sz);
84073944a6dSAdrian Hunter 	printk(KERN_DEBUG "\tpnode_sz:      %d\n", c->pnode_sz);
84173944a6dSAdrian Hunter 	printk(KERN_DEBUG "\tnnode_sz:      %d\n", c->nnode_sz);
84273944a6dSAdrian Hunter 	printk(KERN_DEBUG "\tltab_sz:       %d\n", c->ltab_sz);
84373944a6dSAdrian Hunter 	printk(KERN_DEBUG "\tlsave_sz:      %d\n", c->lsave_sz);
84473944a6dSAdrian Hunter 	printk(KERN_DEBUG "\tbig_lpt:       %d\n", c->big_lpt);
84573944a6dSAdrian Hunter 	printk(KERN_DEBUG "\tlpt_hght:      %d\n", c->lpt_hght);
84673944a6dSAdrian Hunter 	printk(KERN_DEBUG "\tpnode_cnt:     %d\n", c->pnode_cnt);
84773944a6dSAdrian Hunter 	printk(KERN_DEBUG "\tnnode_cnt:     %d\n", c->nnode_cnt);
84873944a6dSAdrian Hunter 	printk(KERN_DEBUG "\tdirty_pn_cnt:  %d\n", c->dirty_pn_cnt);
84973944a6dSAdrian Hunter 	printk(KERN_DEBUG "\tdirty_nn_cnt:  %d\n", c->dirty_nn_cnt);
85073944a6dSAdrian Hunter 	printk(KERN_DEBUG "\tlsave_cnt:     %d\n", c->lsave_cnt);
85173944a6dSAdrian Hunter 	printk(KERN_DEBUG "\tspace_bits:    %d\n", c->space_bits);
85273944a6dSAdrian Hunter 	printk(KERN_DEBUG "\tlpt_lnum_bits: %d\n", c->lpt_lnum_bits);
85373944a6dSAdrian Hunter 	printk(KERN_DEBUG "\tlpt_offs_bits: %d\n", c->lpt_offs_bits);
85473944a6dSAdrian Hunter 	printk(KERN_DEBUG "\tlpt_spc_bits:  %d\n", c->lpt_spc_bits);
85573944a6dSAdrian Hunter 	printk(KERN_DEBUG "\tpcnt_bits:     %d\n", c->pcnt_bits);
85673944a6dSAdrian Hunter 	printk(KERN_DEBUG "\tlnum_bits:     %d\n", c->lnum_bits);
85773944a6dSAdrian Hunter 	printk(KERN_DEBUG "\tLPT root is at %d:%d\n", c->lpt_lnum, c->lpt_offs);
85873944a6dSAdrian Hunter 	printk(KERN_DEBUG "\tLPT head is at %d:%d\n",
85973944a6dSAdrian Hunter 	       c->nhead_lnum, c->nhead_offs);
860f92b9826SArtem Bityutskiy 	printk(KERN_DEBUG "\tLPT ltab is at %d:%d\n",
861f92b9826SArtem Bityutskiy 	       c->ltab_lnum, c->ltab_offs);
86273944a6dSAdrian Hunter 	if (c->big_lpt)
86373944a6dSAdrian Hunter 		printk(KERN_DEBUG "\tLPT lsave is at %d:%d\n",
86473944a6dSAdrian Hunter 		       c->lsave_lnum, c->lsave_offs);
86573944a6dSAdrian Hunter 	for (i = 0; i < c->lpt_lebs; i++)
86673944a6dSAdrian Hunter 		printk(KERN_DEBUG "\tLPT LEB %d free %d dirty %d tgc %d "
86773944a6dSAdrian Hunter 		       "cmt %d\n", i + c->lpt_first, c->ltab[i].free,
86873944a6dSAdrian Hunter 		       c->ltab[i].dirty, c->ltab[i].tgc, c->ltab[i].cmt);
86973944a6dSAdrian Hunter 	spin_unlock(&dbg_lock);
87073944a6dSAdrian Hunter }
87173944a6dSAdrian Hunter 
8721e51764aSArtem Bityutskiy void dbg_dump_leb(const struct ubifs_info *c, int lnum)
8731e51764aSArtem Bityutskiy {
8741e51764aSArtem Bityutskiy 	struct ubifs_scan_leb *sleb;
8751e51764aSArtem Bityutskiy 	struct ubifs_scan_node *snod;
87673d9aec3SArtem Bityutskiy 	void *buf;
8771e51764aSArtem Bityutskiy 
8782b1844a8SArtem Bityutskiy 	if (dbg_is_tst_rcvry(c))
8791e51764aSArtem Bityutskiy 		return;
8801e51764aSArtem Bityutskiy 
8812ba5f7aeSArtem Bityutskiy 	printk(KERN_DEBUG "(pid %d) start dumping LEB %d\n",
8822ba5f7aeSArtem Bityutskiy 	       current->pid, lnum);
88373d9aec3SArtem Bityutskiy 
884fc5e58c0SArtem Bityutskiy 	buf = __vmalloc(c->leb_size, GFP_NOFS, PAGE_KERNEL);
88573d9aec3SArtem Bityutskiy 	if (!buf) {
88673d9aec3SArtem Bityutskiy 		ubifs_err("cannot allocate memory for dumping LEB %d", lnum);
88773d9aec3SArtem Bityutskiy 		return;
88873d9aec3SArtem Bityutskiy 	}
88973d9aec3SArtem Bityutskiy 
89073d9aec3SArtem Bityutskiy 	sleb = ubifs_scan(c, lnum, 0, buf, 0);
8911e51764aSArtem Bityutskiy 	if (IS_ERR(sleb)) {
8921e51764aSArtem Bityutskiy 		ubifs_err("scan error %d", (int)PTR_ERR(sleb));
89373d9aec3SArtem Bityutskiy 		goto out;
8941e51764aSArtem Bityutskiy 	}
8951e51764aSArtem Bityutskiy 
8961e51764aSArtem Bityutskiy 	printk(KERN_DEBUG "LEB %d has %d nodes ending at %d\n", lnum,
8971e51764aSArtem Bityutskiy 	       sleb->nodes_cnt, sleb->endpt);
8981e51764aSArtem Bityutskiy 
8991e51764aSArtem Bityutskiy 	list_for_each_entry(snod, &sleb->nodes, list) {
9001e51764aSArtem Bityutskiy 		cond_resched();
9011e51764aSArtem Bityutskiy 		printk(KERN_DEBUG "Dumping node at LEB %d:%d len %d\n", lnum,
9021e51764aSArtem Bityutskiy 		       snod->offs, snod->len);
9031e51764aSArtem Bityutskiy 		dbg_dump_node(c, snod->node);
9041e51764aSArtem Bityutskiy 	}
9051e51764aSArtem Bityutskiy 
9062ba5f7aeSArtem Bityutskiy 	printk(KERN_DEBUG "(pid %d) finish dumping LEB %d\n",
9072ba5f7aeSArtem Bityutskiy 	       current->pid, lnum);
9081e51764aSArtem Bityutskiy 	ubifs_scan_destroy(sleb);
90973d9aec3SArtem Bityutskiy 
91073d9aec3SArtem Bityutskiy out:
91173d9aec3SArtem Bityutskiy 	vfree(buf);
9121e51764aSArtem Bityutskiy 	return;
9131e51764aSArtem Bityutskiy }
9141e51764aSArtem Bityutskiy 
9151e51764aSArtem Bityutskiy void dbg_dump_znode(const struct ubifs_info *c,
9161e51764aSArtem Bityutskiy 		    const struct ubifs_znode *znode)
9171e51764aSArtem Bityutskiy {
9181e51764aSArtem Bityutskiy 	int n;
9191e51764aSArtem Bityutskiy 	const struct ubifs_zbranch *zbr;
9201e51764aSArtem Bityutskiy 
9211e51764aSArtem Bityutskiy 	spin_lock(&dbg_lock);
9221e51764aSArtem Bityutskiy 	if (znode->parent)
9231e51764aSArtem Bityutskiy 		zbr = &znode->parent->zbranch[znode->iip];
9241e51764aSArtem Bityutskiy 	else
9251e51764aSArtem Bityutskiy 		zbr = &c->zroot;
9261e51764aSArtem Bityutskiy 
9271e51764aSArtem Bityutskiy 	printk(KERN_DEBUG "znode %p, LEB %d:%d len %d parent %p iip %d level %d"
9281e51764aSArtem Bityutskiy 	       " child_cnt %d flags %lx\n", znode, zbr->lnum, zbr->offs,
9291e51764aSArtem Bityutskiy 	       zbr->len, znode->parent, znode->iip, znode->level,
9301e51764aSArtem Bityutskiy 	       znode->child_cnt, znode->flags);
9311e51764aSArtem Bityutskiy 
9321e51764aSArtem Bityutskiy 	if (znode->child_cnt <= 0 || znode->child_cnt > c->fanout) {
9331e51764aSArtem Bityutskiy 		spin_unlock(&dbg_lock);
9341e51764aSArtem Bityutskiy 		return;
9351e51764aSArtem Bityutskiy 	}
9361e51764aSArtem Bityutskiy 
9371e51764aSArtem Bityutskiy 	printk(KERN_DEBUG "zbranches:\n");
9381e51764aSArtem Bityutskiy 	for (n = 0; n < znode->child_cnt; n++) {
9391e51764aSArtem Bityutskiy 		zbr = &znode->zbranch[n];
9401e51764aSArtem Bityutskiy 		if (znode->level > 0)
9411e51764aSArtem Bityutskiy 			printk(KERN_DEBUG "\t%d: znode %p LEB %d:%d len %d key "
9421e51764aSArtem Bityutskiy 					  "%s\n", n, zbr->znode, zbr->lnum,
9431e51764aSArtem Bityutskiy 					  zbr->offs, zbr->len,
9441e51764aSArtem Bityutskiy 					  DBGKEY(&zbr->key));
9451e51764aSArtem Bityutskiy 		else
9461e51764aSArtem Bityutskiy 			printk(KERN_DEBUG "\t%d: LNC %p LEB %d:%d len %d key "
9471e51764aSArtem Bityutskiy 					  "%s\n", n, zbr->znode, zbr->lnum,
9481e51764aSArtem Bityutskiy 					  zbr->offs, zbr->len,
9491e51764aSArtem Bityutskiy 					  DBGKEY(&zbr->key));
9501e51764aSArtem Bityutskiy 	}
9511e51764aSArtem Bityutskiy 	spin_unlock(&dbg_lock);
9521e51764aSArtem Bityutskiy }
9531e51764aSArtem Bityutskiy 
9541e51764aSArtem Bityutskiy void dbg_dump_heap(struct ubifs_info *c, struct ubifs_lpt_heap *heap, int cat)
9551e51764aSArtem Bityutskiy {
9561e51764aSArtem Bityutskiy 	int i;
9571e51764aSArtem Bityutskiy 
9582ba5f7aeSArtem Bityutskiy 	printk(KERN_DEBUG "(pid %d) start dumping heap cat %d (%d elements)\n",
9591de94159SArtem Bityutskiy 	       current->pid, cat, heap->cnt);
9601e51764aSArtem Bityutskiy 	for (i = 0; i < heap->cnt; i++) {
9611e51764aSArtem Bityutskiy 		struct ubifs_lprops *lprops = heap->arr[i];
9621e51764aSArtem Bityutskiy 
9631e51764aSArtem Bityutskiy 		printk(KERN_DEBUG "\t%d. LEB %d hpos %d free %d dirty %d "
9641e51764aSArtem Bityutskiy 		       "flags %d\n", i, lprops->lnum, lprops->hpos,
9651e51764aSArtem Bityutskiy 		       lprops->free, lprops->dirty, lprops->flags);
9661e51764aSArtem Bityutskiy 	}
9672ba5f7aeSArtem Bityutskiy 	printk(KERN_DEBUG "(pid %d) finish dumping heap\n", current->pid);
9681e51764aSArtem Bityutskiy }
9691e51764aSArtem Bityutskiy 
9701e51764aSArtem Bityutskiy void dbg_dump_pnode(struct ubifs_info *c, struct ubifs_pnode *pnode,
9711e51764aSArtem Bityutskiy 		    struct ubifs_nnode *parent, int iip)
9721e51764aSArtem Bityutskiy {
9731e51764aSArtem Bityutskiy 	int i;
9741e51764aSArtem Bityutskiy 
9752ba5f7aeSArtem Bityutskiy 	printk(KERN_DEBUG "(pid %d) dumping pnode:\n", current->pid);
9761e51764aSArtem Bityutskiy 	printk(KERN_DEBUG "\taddress %zx parent %zx cnext %zx\n",
9771e51764aSArtem Bityutskiy 	       (size_t)pnode, (size_t)parent, (size_t)pnode->cnext);
9781e51764aSArtem Bityutskiy 	printk(KERN_DEBUG "\tflags %lu iip %d level %d num %d\n",
9791e51764aSArtem Bityutskiy 	       pnode->flags, iip, pnode->level, pnode->num);
9801e51764aSArtem Bityutskiy 	for (i = 0; i < UBIFS_LPT_FANOUT; i++) {
9811e51764aSArtem Bityutskiy 		struct ubifs_lprops *lp = &pnode->lprops[i];
9821e51764aSArtem Bityutskiy 
9831e51764aSArtem Bityutskiy 		printk(KERN_DEBUG "\t%d: free %d dirty %d flags %d lnum %d\n",
9841e51764aSArtem Bityutskiy 		       i, lp->free, lp->dirty, lp->flags, lp->lnum);
9851e51764aSArtem Bityutskiy 	}
9861e51764aSArtem Bityutskiy }
9871e51764aSArtem Bityutskiy 
9881e51764aSArtem Bityutskiy void dbg_dump_tnc(struct ubifs_info *c)
9891e51764aSArtem Bityutskiy {
9901e51764aSArtem Bityutskiy 	struct ubifs_znode *znode;
9911e51764aSArtem Bityutskiy 	int level;
9921e51764aSArtem Bityutskiy 
9931e51764aSArtem Bityutskiy 	printk(KERN_DEBUG "\n");
9942ba5f7aeSArtem Bityutskiy 	printk(KERN_DEBUG "(pid %d) start dumping TNC tree\n", current->pid);
9951e51764aSArtem Bityutskiy 	znode = ubifs_tnc_levelorder_next(c->zroot.znode, NULL);
9961e51764aSArtem Bityutskiy 	level = znode->level;
9971e51764aSArtem Bityutskiy 	printk(KERN_DEBUG "== Level %d ==\n", level);
9981e51764aSArtem Bityutskiy 	while (znode) {
9991e51764aSArtem Bityutskiy 		if (level != znode->level) {
10001e51764aSArtem Bityutskiy 			level = znode->level;
10011e51764aSArtem Bityutskiy 			printk(KERN_DEBUG "== Level %d ==\n", level);
10021e51764aSArtem Bityutskiy 		}
10031e51764aSArtem Bityutskiy 		dbg_dump_znode(c, znode);
10041e51764aSArtem Bityutskiy 		znode = ubifs_tnc_levelorder_next(c->zroot.znode, znode);
10051e51764aSArtem Bityutskiy 	}
10062ba5f7aeSArtem Bityutskiy 	printk(KERN_DEBUG "(pid %d) finish dumping TNC tree\n", current->pid);
10071e51764aSArtem Bityutskiy }
10081e51764aSArtem Bityutskiy 
10091e51764aSArtem Bityutskiy static int dump_znode(struct ubifs_info *c, struct ubifs_znode *znode,
10101e51764aSArtem Bityutskiy 		      void *priv)
10111e51764aSArtem Bityutskiy {
10121e51764aSArtem Bityutskiy 	dbg_dump_znode(c, znode);
10131e51764aSArtem Bityutskiy 	return 0;
10141e51764aSArtem Bityutskiy }
10151e51764aSArtem Bityutskiy 
10161e51764aSArtem Bityutskiy /**
10171e51764aSArtem Bityutskiy  * dbg_dump_index - dump the on-flash index.
10181e51764aSArtem Bityutskiy  * @c: UBIFS file-system description object
10191e51764aSArtem Bityutskiy  *
10201e51764aSArtem Bityutskiy  * This function dumps whole UBIFS indexing B-tree, unlike 'dbg_dump_tnc()'
10211e51764aSArtem Bityutskiy  * which dumps only in-memory znodes and does not read znodes which from flash.
10221e51764aSArtem Bityutskiy  */
10231e51764aSArtem Bityutskiy void dbg_dump_index(struct ubifs_info *c)
10241e51764aSArtem Bityutskiy {
10251e51764aSArtem Bityutskiy 	dbg_walk_index(c, NULL, dump_znode, NULL);
10261e51764aSArtem Bityutskiy }
10271e51764aSArtem Bityutskiy 
10281e51764aSArtem Bityutskiy /**
102984abf972SArtem Bityutskiy  * dbg_save_space_info - save information about flash space.
103084abf972SArtem Bityutskiy  * @c: UBIFS file-system description object
103184abf972SArtem Bityutskiy  *
103284abf972SArtem Bityutskiy  * This function saves information about UBIFS free space, dirty space, etc, in
103384abf972SArtem Bityutskiy  * order to check it later.
103484abf972SArtem Bityutskiy  */
103584abf972SArtem Bityutskiy void dbg_save_space_info(struct ubifs_info *c)
103684abf972SArtem Bityutskiy {
103784abf972SArtem Bityutskiy 	struct ubifs_debug_info *d = c->dbg;
10387da6443aSArtem Bityutskiy 	int freeable_cnt;
103984abf972SArtem Bityutskiy 
104084abf972SArtem Bityutskiy 	spin_lock(&c->space_lock);
10417da6443aSArtem Bityutskiy 	memcpy(&d->saved_lst, &c->lst, sizeof(struct ubifs_lp_stats));
1042f1bd66afSArtem Bityutskiy 	memcpy(&d->saved_bi, &c->bi, sizeof(struct ubifs_budg_info));
1043f1bd66afSArtem Bityutskiy 	d->saved_idx_gc_cnt = c->idx_gc_cnt;
10447da6443aSArtem Bityutskiy 
10457da6443aSArtem Bityutskiy 	/*
10467da6443aSArtem Bityutskiy 	 * We use a dirty hack here and zero out @c->freeable_cnt, because it
10477da6443aSArtem Bityutskiy 	 * affects the free space calculations, and UBIFS might not know about
10487da6443aSArtem Bityutskiy 	 * all freeable eraseblocks. Indeed, we know about freeable eraseblocks
10497da6443aSArtem Bityutskiy 	 * only when we read their lprops, and we do this only lazily, upon the
10507da6443aSArtem Bityutskiy 	 * need. So at any given point of time @c->freeable_cnt might be not
10517da6443aSArtem Bityutskiy 	 * exactly accurate.
10527da6443aSArtem Bityutskiy 	 *
10537da6443aSArtem Bityutskiy 	 * Just one example about the issue we hit when we did not zero
10547da6443aSArtem Bityutskiy 	 * @c->freeable_cnt.
10557da6443aSArtem Bityutskiy 	 * 1. The file-system is mounted R/O, c->freeable_cnt is %0. We save the
10567da6443aSArtem Bityutskiy 	 *    amount of free space in @d->saved_free
10577da6443aSArtem Bityutskiy 	 * 2. We re-mount R/W, which makes UBIFS to read the "lsave"
10587da6443aSArtem Bityutskiy 	 *    information from flash, where we cache LEBs from various
10597da6443aSArtem Bityutskiy 	 *    categories ('ubifs_remount_fs()' -> 'ubifs_lpt_init()'
10607da6443aSArtem Bityutskiy 	 *    -> 'lpt_init_wr()' -> 'read_lsave()' -> 'ubifs_lpt_lookup()'
10617da6443aSArtem Bityutskiy 	 *    -> 'ubifs_get_pnode()' -> 'update_cats()'
10627da6443aSArtem Bityutskiy 	 *    -> 'ubifs_add_to_cat()').
10637da6443aSArtem Bityutskiy 	 * 3. Lsave contains a freeable eraseblock, and @c->freeable_cnt
10647da6443aSArtem Bityutskiy 	 *    becomes %1.
10657da6443aSArtem Bityutskiy 	 * 4. We calculate the amount of free space when the re-mount is
10667da6443aSArtem Bityutskiy 	 *    finished in 'dbg_check_space_info()' and it does not match
10677da6443aSArtem Bityutskiy 	 *    @d->saved_free.
10687da6443aSArtem Bityutskiy 	 */
10697da6443aSArtem Bityutskiy 	freeable_cnt = c->freeable_cnt;
10707da6443aSArtem Bityutskiy 	c->freeable_cnt = 0;
107184abf972SArtem Bityutskiy 	d->saved_free = ubifs_get_free_space_nolock(c);
10727da6443aSArtem Bityutskiy 	c->freeable_cnt = freeable_cnt;
107384abf972SArtem Bityutskiy 	spin_unlock(&c->space_lock);
107484abf972SArtem Bityutskiy }
107584abf972SArtem Bityutskiy 
107684abf972SArtem Bityutskiy /**
107784abf972SArtem Bityutskiy  * dbg_check_space_info - check flash space information.
107884abf972SArtem Bityutskiy  * @c: UBIFS file-system description object
107984abf972SArtem Bityutskiy  *
108084abf972SArtem Bityutskiy  * This function compares current flash space information with the information
108184abf972SArtem Bityutskiy  * which was saved when the 'dbg_save_space_info()' function was called.
108284abf972SArtem Bityutskiy  * Returns zero if the information has not changed, and %-EINVAL it it has
108384abf972SArtem Bityutskiy  * changed.
108484abf972SArtem Bityutskiy  */
108584abf972SArtem Bityutskiy int dbg_check_space_info(struct ubifs_info *c)
108684abf972SArtem Bityutskiy {
108784abf972SArtem Bityutskiy 	struct ubifs_debug_info *d = c->dbg;
108884abf972SArtem Bityutskiy 	struct ubifs_lp_stats lst;
10897da6443aSArtem Bityutskiy 	long long free;
10907da6443aSArtem Bityutskiy 	int freeable_cnt;
109184abf972SArtem Bityutskiy 
109284abf972SArtem Bityutskiy 	spin_lock(&c->space_lock);
10937da6443aSArtem Bityutskiy 	freeable_cnt = c->freeable_cnt;
10947da6443aSArtem Bityutskiy 	c->freeable_cnt = 0;
10957da6443aSArtem Bityutskiy 	free = ubifs_get_free_space_nolock(c);
10967da6443aSArtem Bityutskiy 	c->freeable_cnt = freeable_cnt;
109784abf972SArtem Bityutskiy 	spin_unlock(&c->space_lock);
109884abf972SArtem Bityutskiy 
109984abf972SArtem Bityutskiy 	if (free != d->saved_free) {
110084abf972SArtem Bityutskiy 		ubifs_err("free space changed from %lld to %lld",
110184abf972SArtem Bityutskiy 			  d->saved_free, free);
110284abf972SArtem Bityutskiy 		goto out;
110384abf972SArtem Bityutskiy 	}
110484abf972SArtem Bityutskiy 
110584abf972SArtem Bityutskiy 	return 0;
110684abf972SArtem Bityutskiy 
110784abf972SArtem Bityutskiy out:
110884abf972SArtem Bityutskiy 	ubifs_msg("saved lprops statistics dump");
110984abf972SArtem Bityutskiy 	dbg_dump_lstats(&d->saved_lst);
1110f1bd66afSArtem Bityutskiy 	ubifs_msg("saved budgeting info dump");
1111f1bd66afSArtem Bityutskiy 	dbg_dump_budg(c, &d->saved_bi);
1112f1bd66afSArtem Bityutskiy 	ubifs_msg("saved idx_gc_cnt %d", d->saved_idx_gc_cnt);
111384abf972SArtem Bityutskiy 	ubifs_msg("current lprops statistics dump");
1114f1bd66afSArtem Bityutskiy 	ubifs_get_lp_stats(c, &lst);
1115e055f7e8SArtem Bityutskiy 	dbg_dump_lstats(&lst);
1116f1bd66afSArtem Bityutskiy 	ubifs_msg("current budgeting info dump");
1117f1bd66afSArtem Bityutskiy 	dbg_dump_budg(c, &c->bi);
111884abf972SArtem Bityutskiy 	dump_stack();
111984abf972SArtem Bityutskiy 	return -EINVAL;
112084abf972SArtem Bityutskiy }
112184abf972SArtem Bityutskiy 
112284abf972SArtem Bityutskiy /**
11231e51764aSArtem Bityutskiy  * dbg_check_synced_i_size - check synchronized inode size.
1124d808efb4SArtem Bityutskiy  * @c: UBIFS file-system description object
11251e51764aSArtem Bityutskiy  * @inode: inode to check
11261e51764aSArtem Bityutskiy  *
11271e51764aSArtem Bityutskiy  * If inode is clean, synchronized inode size has to be equivalent to current
11281e51764aSArtem Bityutskiy  * inode size. This function has to be called only for locked inodes (@i_mutex
11291e51764aSArtem Bityutskiy  * has to be locked). Returns %0 if synchronized inode size if correct, and
11301e51764aSArtem Bityutskiy  * %-EINVAL if not.
11311e51764aSArtem Bityutskiy  */
1132d808efb4SArtem Bityutskiy int dbg_check_synced_i_size(const struct ubifs_info *c, struct inode *inode)
11331e51764aSArtem Bityutskiy {
11341e51764aSArtem Bityutskiy 	int err = 0;
11351e51764aSArtem Bityutskiy 	struct ubifs_inode *ui = ubifs_inode(inode);
11361e51764aSArtem Bityutskiy 
11372b1844a8SArtem Bityutskiy 	if (!dbg_is_chk_gen(c))
11381e51764aSArtem Bityutskiy 		return 0;
11391e51764aSArtem Bityutskiy 	if (!S_ISREG(inode->i_mode))
11401e51764aSArtem Bityutskiy 		return 0;
11411e51764aSArtem Bityutskiy 
11421e51764aSArtem Bityutskiy 	mutex_lock(&ui->ui_mutex);
11431e51764aSArtem Bityutskiy 	spin_lock(&ui->ui_lock);
11441e51764aSArtem Bityutskiy 	if (ui->ui_size != ui->synced_i_size && !ui->dirty) {
11451e51764aSArtem Bityutskiy 		ubifs_err("ui_size is %lld, synced_i_size is %lld, but inode "
11461e51764aSArtem Bityutskiy 			  "is clean", ui->ui_size, ui->synced_i_size);
11471e51764aSArtem Bityutskiy 		ubifs_err("i_ino %lu, i_mode %#x, i_size %lld", inode->i_ino,
11481e51764aSArtem Bityutskiy 			  inode->i_mode, i_size_read(inode));
11491e51764aSArtem Bityutskiy 		dbg_dump_stack();
11501e51764aSArtem Bityutskiy 		err = -EINVAL;
11511e51764aSArtem Bityutskiy 	}
11521e51764aSArtem Bityutskiy 	spin_unlock(&ui->ui_lock);
11531e51764aSArtem Bityutskiy 	mutex_unlock(&ui->ui_mutex);
11541e51764aSArtem Bityutskiy 	return err;
11551e51764aSArtem Bityutskiy }
11561e51764aSArtem Bityutskiy 
11571e51764aSArtem Bityutskiy /*
11581e51764aSArtem Bityutskiy  * dbg_check_dir - check directory inode size and link count.
11591e51764aSArtem Bityutskiy  * @c: UBIFS file-system description object
11601e51764aSArtem Bityutskiy  * @dir: the directory to calculate size for
11611e51764aSArtem Bityutskiy  * @size: the result is returned here
11621e51764aSArtem Bityutskiy  *
11631e51764aSArtem Bityutskiy  * This function makes sure that directory size and link count are correct.
11641e51764aSArtem Bityutskiy  * Returns zero in case of success and a negative error code in case of
11651e51764aSArtem Bityutskiy  * failure.
11661e51764aSArtem Bityutskiy  *
11671e51764aSArtem Bityutskiy  * Note, it is good idea to make sure the @dir->i_mutex is locked before
11681e51764aSArtem Bityutskiy  * calling this function.
11691e51764aSArtem Bityutskiy  */
11701b51e983SArtem Bityutskiy int dbg_check_dir(struct ubifs_info *c, const struct inode *dir)
11711e51764aSArtem Bityutskiy {
11721e51764aSArtem Bityutskiy 	unsigned int nlink = 2;
11731e51764aSArtem Bityutskiy 	union ubifs_key key;
11741e51764aSArtem Bityutskiy 	struct ubifs_dent_node *dent, *pdent = NULL;
11751e51764aSArtem Bityutskiy 	struct qstr nm = { .name = NULL };
11761e51764aSArtem Bityutskiy 	loff_t size = UBIFS_INO_NODE_SZ;
11771e51764aSArtem Bityutskiy 
11782b1844a8SArtem Bityutskiy 	if (!dbg_is_chk_gen(c))
11791e51764aSArtem Bityutskiy 		return 0;
11801e51764aSArtem Bityutskiy 
11811e51764aSArtem Bityutskiy 	if (!S_ISDIR(dir->i_mode))
11821e51764aSArtem Bityutskiy 		return 0;
11831e51764aSArtem Bityutskiy 
11841e51764aSArtem Bityutskiy 	lowest_dent_key(c, &key, dir->i_ino);
11851e51764aSArtem Bityutskiy 	while (1) {
11861e51764aSArtem Bityutskiy 		int err;
11871e51764aSArtem Bityutskiy 
11881e51764aSArtem Bityutskiy 		dent = ubifs_tnc_next_ent(c, &key, &nm);
11891e51764aSArtem Bityutskiy 		if (IS_ERR(dent)) {
11901e51764aSArtem Bityutskiy 			err = PTR_ERR(dent);
11911e51764aSArtem Bityutskiy 			if (err == -ENOENT)
11921e51764aSArtem Bityutskiy 				break;
11931e51764aSArtem Bityutskiy 			return err;
11941e51764aSArtem Bityutskiy 		}
11951e51764aSArtem Bityutskiy 
11961e51764aSArtem Bityutskiy 		nm.name = dent->name;
11971e51764aSArtem Bityutskiy 		nm.len = le16_to_cpu(dent->nlen);
11981e51764aSArtem Bityutskiy 		size += CALC_DENT_SIZE(nm.len);
11991e51764aSArtem Bityutskiy 		if (dent->type == UBIFS_ITYPE_DIR)
12001e51764aSArtem Bityutskiy 			nlink += 1;
12011e51764aSArtem Bityutskiy 		kfree(pdent);
12021e51764aSArtem Bityutskiy 		pdent = dent;
12031e51764aSArtem Bityutskiy 		key_read(c, &dent->key, &key);
12041e51764aSArtem Bityutskiy 	}
12051e51764aSArtem Bityutskiy 	kfree(pdent);
12061e51764aSArtem Bityutskiy 
12071e51764aSArtem Bityutskiy 	if (i_size_read(dir) != size) {
12081e51764aSArtem Bityutskiy 		ubifs_err("directory inode %lu has size %llu, "
12091e51764aSArtem Bityutskiy 			  "but calculated size is %llu", dir->i_ino,
12101e51764aSArtem Bityutskiy 			  (unsigned long long)i_size_read(dir),
12111e51764aSArtem Bityutskiy 			  (unsigned long long)size);
12124315fb40SArtem Bityutskiy 		dbg_dump_inode(c, dir);
12131e51764aSArtem Bityutskiy 		dump_stack();
12141e51764aSArtem Bityutskiy 		return -EINVAL;
12151e51764aSArtem Bityutskiy 	}
12161e51764aSArtem Bityutskiy 	if (dir->i_nlink != nlink) {
12171e51764aSArtem Bityutskiy 		ubifs_err("directory inode %lu has nlink %u, but calculated "
12181e51764aSArtem Bityutskiy 			  "nlink is %u", dir->i_ino, dir->i_nlink, nlink);
12194315fb40SArtem Bityutskiy 		dbg_dump_inode(c, dir);
12201e51764aSArtem Bityutskiy 		dump_stack();
12211e51764aSArtem Bityutskiy 		return -EINVAL;
12221e51764aSArtem Bityutskiy 	}
12231e51764aSArtem Bityutskiy 
12241e51764aSArtem Bityutskiy 	return 0;
12251e51764aSArtem Bityutskiy }
12261e51764aSArtem Bityutskiy 
12271e51764aSArtem Bityutskiy /**
12281e51764aSArtem Bityutskiy  * dbg_check_key_order - make sure that colliding keys are properly ordered.
12291e51764aSArtem Bityutskiy  * @c: UBIFS file-system description object
12301e51764aSArtem Bityutskiy  * @zbr1: first zbranch
12311e51764aSArtem Bityutskiy  * @zbr2: following zbranch
12321e51764aSArtem Bityutskiy  *
12331e51764aSArtem Bityutskiy  * In UBIFS indexing B-tree colliding keys has to be sorted in binary order of
12341e51764aSArtem Bityutskiy  * names of the direntries/xentries which are referred by the keys. This
12351e51764aSArtem Bityutskiy  * function reads direntries/xentries referred by @zbr1 and @zbr2 and makes
12361e51764aSArtem Bityutskiy  * sure the name of direntry/xentry referred by @zbr1 is less than
12371e51764aSArtem Bityutskiy  * direntry/xentry referred by @zbr2. Returns zero if this is true, %1 if not,
12381e51764aSArtem Bityutskiy  * and a negative error code in case of failure.
12391e51764aSArtem Bityutskiy  */
12401e51764aSArtem Bityutskiy static int dbg_check_key_order(struct ubifs_info *c, struct ubifs_zbranch *zbr1,
12411e51764aSArtem Bityutskiy 			       struct ubifs_zbranch *zbr2)
12421e51764aSArtem Bityutskiy {
12431e51764aSArtem Bityutskiy 	int err, nlen1, nlen2, cmp;
12441e51764aSArtem Bityutskiy 	struct ubifs_dent_node *dent1, *dent2;
12451e51764aSArtem Bityutskiy 	union ubifs_key key;
12461e51764aSArtem Bityutskiy 
12471e51764aSArtem Bityutskiy 	ubifs_assert(!keys_cmp(c, &zbr1->key, &zbr2->key));
12481e51764aSArtem Bityutskiy 	dent1 = kmalloc(UBIFS_MAX_DENT_NODE_SZ, GFP_NOFS);
12491e51764aSArtem Bityutskiy 	if (!dent1)
12501e51764aSArtem Bityutskiy 		return -ENOMEM;
12511e51764aSArtem Bityutskiy 	dent2 = kmalloc(UBIFS_MAX_DENT_NODE_SZ, GFP_NOFS);
12521e51764aSArtem Bityutskiy 	if (!dent2) {
12531e51764aSArtem Bityutskiy 		err = -ENOMEM;
12541e51764aSArtem Bityutskiy 		goto out_free;
12551e51764aSArtem Bityutskiy 	}
12561e51764aSArtem Bityutskiy 
12571e51764aSArtem Bityutskiy 	err = ubifs_tnc_read_node(c, zbr1, dent1);
12581e51764aSArtem Bityutskiy 	if (err)
12591e51764aSArtem Bityutskiy 		goto out_free;
12601e51764aSArtem Bityutskiy 	err = ubifs_validate_entry(c, dent1);
12611e51764aSArtem Bityutskiy 	if (err)
12621e51764aSArtem Bityutskiy 		goto out_free;
12631e51764aSArtem Bityutskiy 
12641e51764aSArtem Bityutskiy 	err = ubifs_tnc_read_node(c, zbr2, dent2);
12651e51764aSArtem Bityutskiy 	if (err)
12661e51764aSArtem Bityutskiy 		goto out_free;
12671e51764aSArtem Bityutskiy 	err = ubifs_validate_entry(c, dent2);
12681e51764aSArtem Bityutskiy 	if (err)
12691e51764aSArtem Bityutskiy 		goto out_free;
12701e51764aSArtem Bityutskiy 
12711e51764aSArtem Bityutskiy 	/* Make sure node keys are the same as in zbranch */
12721e51764aSArtem Bityutskiy 	err = 1;
12731e51764aSArtem Bityutskiy 	key_read(c, &dent1->key, &key);
12741e51764aSArtem Bityutskiy 	if (keys_cmp(c, &zbr1->key, &key)) {
12755d38b3acSArtem Bityutskiy 		dbg_err("1st entry at %d:%d has key %s", zbr1->lnum,
12761e51764aSArtem Bityutskiy 			zbr1->offs, DBGKEY(&key));
12775d38b3acSArtem Bityutskiy 		dbg_err("but it should have key %s according to tnc",
12782ba5f7aeSArtem Bityutskiy 			DBGKEY(&zbr1->key));
12792ba5f7aeSArtem Bityutskiy 		dbg_dump_node(c, dent1);
12801e51764aSArtem Bityutskiy 		goto out_free;
12811e51764aSArtem Bityutskiy 	}
12821e51764aSArtem Bityutskiy 
12831e51764aSArtem Bityutskiy 	key_read(c, &dent2->key, &key);
12841e51764aSArtem Bityutskiy 	if (keys_cmp(c, &zbr2->key, &key)) {
12855d38b3acSArtem Bityutskiy 		dbg_err("2nd entry at %d:%d has key %s", zbr1->lnum,
12861e51764aSArtem Bityutskiy 			zbr1->offs, DBGKEY(&key));
12875d38b3acSArtem Bityutskiy 		dbg_err("but it should have key %s according to tnc",
12882ba5f7aeSArtem Bityutskiy 			DBGKEY(&zbr2->key));
12892ba5f7aeSArtem Bityutskiy 		dbg_dump_node(c, dent2);
12901e51764aSArtem Bityutskiy 		goto out_free;
12911e51764aSArtem Bityutskiy 	}
12921e51764aSArtem Bityutskiy 
12931e51764aSArtem Bityutskiy 	nlen1 = le16_to_cpu(dent1->nlen);
12941e51764aSArtem Bityutskiy 	nlen2 = le16_to_cpu(dent2->nlen);
12951e51764aSArtem Bityutskiy 
12961e51764aSArtem Bityutskiy 	cmp = memcmp(dent1->name, dent2->name, min_t(int, nlen1, nlen2));
12971e51764aSArtem Bityutskiy 	if (cmp < 0 || (cmp == 0 && nlen1 < nlen2)) {
12981e51764aSArtem Bityutskiy 		err = 0;
12991e51764aSArtem Bityutskiy 		goto out_free;
13001e51764aSArtem Bityutskiy 	}
13011e51764aSArtem Bityutskiy 	if (cmp == 0 && nlen1 == nlen2)
13025d38b3acSArtem Bityutskiy 		dbg_err("2 xent/dent nodes with the same name");
13031e51764aSArtem Bityutskiy 	else
13045d38b3acSArtem Bityutskiy 		dbg_err("bad order of colliding key %s",
13051e51764aSArtem Bityutskiy 			DBGKEY(&key));
13061e51764aSArtem Bityutskiy 
1307552ff317SArtem Bityutskiy 	ubifs_msg("first node at %d:%d\n", zbr1->lnum, zbr1->offs);
13081e51764aSArtem Bityutskiy 	dbg_dump_node(c, dent1);
1309552ff317SArtem Bityutskiy 	ubifs_msg("second node at %d:%d\n", zbr2->lnum, zbr2->offs);
13101e51764aSArtem Bityutskiy 	dbg_dump_node(c, dent2);
13111e51764aSArtem Bityutskiy 
13121e51764aSArtem Bityutskiy out_free:
13131e51764aSArtem Bityutskiy 	kfree(dent2);
13141e51764aSArtem Bityutskiy 	kfree(dent1);
13151e51764aSArtem Bityutskiy 	return err;
13161e51764aSArtem Bityutskiy }
13171e51764aSArtem Bityutskiy 
13181e51764aSArtem Bityutskiy /**
13191e51764aSArtem Bityutskiy  * dbg_check_znode - check if znode is all right.
13201e51764aSArtem Bityutskiy  * @c: UBIFS file-system description object
13211e51764aSArtem Bityutskiy  * @zbr: zbranch which points to this znode
13221e51764aSArtem Bityutskiy  *
13231e51764aSArtem Bityutskiy  * This function makes sure that znode referred to by @zbr is all right.
13241e51764aSArtem Bityutskiy  * Returns zero if it is, and %-EINVAL if it is not.
13251e51764aSArtem Bityutskiy  */
13261e51764aSArtem Bityutskiy static int dbg_check_znode(struct ubifs_info *c, struct ubifs_zbranch *zbr)
13271e51764aSArtem Bityutskiy {
13281e51764aSArtem Bityutskiy 	struct ubifs_znode *znode = zbr->znode;
13291e51764aSArtem Bityutskiy 	struct ubifs_znode *zp = znode->parent;
13301e51764aSArtem Bityutskiy 	int n, err, cmp;
13311e51764aSArtem Bityutskiy 
13321e51764aSArtem Bityutskiy 	if (znode->child_cnt <= 0 || znode->child_cnt > c->fanout) {
13331e51764aSArtem Bityutskiy 		err = 1;
13341e51764aSArtem Bityutskiy 		goto out;
13351e51764aSArtem Bityutskiy 	}
13361e51764aSArtem Bityutskiy 	if (znode->level < 0) {
13371e51764aSArtem Bityutskiy 		err = 2;
13381e51764aSArtem Bityutskiy 		goto out;
13391e51764aSArtem Bityutskiy 	}
13401e51764aSArtem Bityutskiy 	if (znode->iip < 0 || znode->iip >= c->fanout) {
13411e51764aSArtem Bityutskiy 		err = 3;
13421e51764aSArtem Bityutskiy 		goto out;
13431e51764aSArtem Bityutskiy 	}
13441e51764aSArtem Bityutskiy 
13451e51764aSArtem Bityutskiy 	if (zbr->len == 0)
13461e51764aSArtem Bityutskiy 		/* Only dirty zbranch may have no on-flash nodes */
13471e51764aSArtem Bityutskiy 		if (!ubifs_zn_dirty(znode)) {
13481e51764aSArtem Bityutskiy 			err = 4;
13491e51764aSArtem Bityutskiy 			goto out;
13501e51764aSArtem Bityutskiy 		}
13511e51764aSArtem Bityutskiy 
13521e51764aSArtem Bityutskiy 	if (ubifs_zn_dirty(znode)) {
13531e51764aSArtem Bityutskiy 		/*
13541e51764aSArtem Bityutskiy 		 * If znode is dirty, its parent has to be dirty as well. The
13551e51764aSArtem Bityutskiy 		 * order of the operation is important, so we have to have
13561e51764aSArtem Bityutskiy 		 * memory barriers.
13571e51764aSArtem Bityutskiy 		 */
13581e51764aSArtem Bityutskiy 		smp_mb();
13591e51764aSArtem Bityutskiy 		if (zp && !ubifs_zn_dirty(zp)) {
13601e51764aSArtem Bityutskiy 			/*
13611e51764aSArtem Bityutskiy 			 * The dirty flag is atomic and is cleared outside the
13621e51764aSArtem Bityutskiy 			 * TNC mutex, so znode's dirty flag may now have
13631e51764aSArtem Bityutskiy 			 * been cleared. The child is always cleared before the
13641e51764aSArtem Bityutskiy 			 * parent, so we just need to check again.
13651e51764aSArtem Bityutskiy 			 */
13661e51764aSArtem Bityutskiy 			smp_mb();
13671e51764aSArtem Bityutskiy 			if (ubifs_zn_dirty(znode)) {
13681e51764aSArtem Bityutskiy 				err = 5;
13691e51764aSArtem Bityutskiy 				goto out;
13701e51764aSArtem Bityutskiy 			}
13711e51764aSArtem Bityutskiy 		}
13721e51764aSArtem Bityutskiy 	}
13731e51764aSArtem Bityutskiy 
13741e51764aSArtem Bityutskiy 	if (zp) {
13751e51764aSArtem Bityutskiy 		const union ubifs_key *min, *max;
13761e51764aSArtem Bityutskiy 
13771e51764aSArtem Bityutskiy 		if (znode->level != zp->level - 1) {
13781e51764aSArtem Bityutskiy 			err = 6;
13791e51764aSArtem Bityutskiy 			goto out;
13801e51764aSArtem Bityutskiy 		}
13811e51764aSArtem Bityutskiy 
13821e51764aSArtem Bityutskiy 		/* Make sure the 'parent' pointer in our znode is correct */
13831e51764aSArtem Bityutskiy 		err = ubifs_search_zbranch(c, zp, &zbr->key, &n);
13841e51764aSArtem Bityutskiy 		if (!err) {
13851e51764aSArtem Bityutskiy 			/* This zbranch does not exist in the parent */
13861e51764aSArtem Bityutskiy 			err = 7;
13871e51764aSArtem Bityutskiy 			goto out;
13881e51764aSArtem Bityutskiy 		}
13891e51764aSArtem Bityutskiy 
13901e51764aSArtem Bityutskiy 		if (znode->iip >= zp->child_cnt) {
13911e51764aSArtem Bityutskiy 			err = 8;
13921e51764aSArtem Bityutskiy 			goto out;
13931e51764aSArtem Bityutskiy 		}
13941e51764aSArtem Bityutskiy 
13951e51764aSArtem Bityutskiy 		if (znode->iip != n) {
13961e51764aSArtem Bityutskiy 			/* This may happen only in case of collisions */
13971e51764aSArtem Bityutskiy 			if (keys_cmp(c, &zp->zbranch[n].key,
13981e51764aSArtem Bityutskiy 				     &zp->zbranch[znode->iip].key)) {
13991e51764aSArtem Bityutskiy 				err = 9;
14001e51764aSArtem Bityutskiy 				goto out;
14011e51764aSArtem Bityutskiy 			}
14021e51764aSArtem Bityutskiy 			n = znode->iip;
14031e51764aSArtem Bityutskiy 		}
14041e51764aSArtem Bityutskiy 
14051e51764aSArtem Bityutskiy 		/*
14061e51764aSArtem Bityutskiy 		 * Make sure that the first key in our znode is greater than or
14071e51764aSArtem Bityutskiy 		 * equal to the key in the pointing zbranch.
14081e51764aSArtem Bityutskiy 		 */
14091e51764aSArtem Bityutskiy 		min = &zbr->key;
14101e51764aSArtem Bityutskiy 		cmp = keys_cmp(c, min, &znode->zbranch[0].key);
14111e51764aSArtem Bityutskiy 		if (cmp == 1) {
14121e51764aSArtem Bityutskiy 			err = 10;
14131e51764aSArtem Bityutskiy 			goto out;
14141e51764aSArtem Bityutskiy 		}
14151e51764aSArtem Bityutskiy 
14161e51764aSArtem Bityutskiy 		if (n + 1 < zp->child_cnt) {
14171e51764aSArtem Bityutskiy 			max = &zp->zbranch[n + 1].key;
14181e51764aSArtem Bityutskiy 
14191e51764aSArtem Bityutskiy 			/*
14201e51764aSArtem Bityutskiy 			 * Make sure the last key in our znode is less or
14217d4e9ccbSArtem Bityutskiy 			 * equivalent than the key in the zbranch which goes
14221e51764aSArtem Bityutskiy 			 * after our pointing zbranch.
14231e51764aSArtem Bityutskiy 			 */
14241e51764aSArtem Bityutskiy 			cmp = keys_cmp(c, max,
14251e51764aSArtem Bityutskiy 				&znode->zbranch[znode->child_cnt - 1].key);
14261e51764aSArtem Bityutskiy 			if (cmp == -1) {
14271e51764aSArtem Bityutskiy 				err = 11;
14281e51764aSArtem Bityutskiy 				goto out;
14291e51764aSArtem Bityutskiy 			}
14301e51764aSArtem Bityutskiy 		}
14311e51764aSArtem Bityutskiy 	} else {
14321e51764aSArtem Bityutskiy 		/* This may only be root znode */
14331e51764aSArtem Bityutskiy 		if (zbr != &c->zroot) {
14341e51764aSArtem Bityutskiy 			err = 12;
14351e51764aSArtem Bityutskiy 			goto out;
14361e51764aSArtem Bityutskiy 		}
14371e51764aSArtem Bityutskiy 	}
14381e51764aSArtem Bityutskiy 
14391e51764aSArtem Bityutskiy 	/*
14401e51764aSArtem Bityutskiy 	 * Make sure that next key is greater or equivalent then the previous
14411e51764aSArtem Bityutskiy 	 * one.
14421e51764aSArtem Bityutskiy 	 */
14431e51764aSArtem Bityutskiy 	for (n = 1; n < znode->child_cnt; n++) {
14441e51764aSArtem Bityutskiy 		cmp = keys_cmp(c, &znode->zbranch[n - 1].key,
14451e51764aSArtem Bityutskiy 			       &znode->zbranch[n].key);
14461e51764aSArtem Bityutskiy 		if (cmp > 0) {
14471e51764aSArtem Bityutskiy 			err = 13;
14481e51764aSArtem Bityutskiy 			goto out;
14491e51764aSArtem Bityutskiy 		}
14501e51764aSArtem Bityutskiy 		if (cmp == 0) {
14511e51764aSArtem Bityutskiy 			/* This can only be keys with colliding hash */
14521e51764aSArtem Bityutskiy 			if (!is_hash_key(c, &znode->zbranch[n].key)) {
14531e51764aSArtem Bityutskiy 				err = 14;
14541e51764aSArtem Bityutskiy 				goto out;
14551e51764aSArtem Bityutskiy 			}
14561e51764aSArtem Bityutskiy 
14571e51764aSArtem Bityutskiy 			if (znode->level != 0 || c->replaying)
14581e51764aSArtem Bityutskiy 				continue;
14591e51764aSArtem Bityutskiy 
14601e51764aSArtem Bityutskiy 			/*
14611e51764aSArtem Bityutskiy 			 * Colliding keys should follow binary order of
14621e51764aSArtem Bityutskiy 			 * corresponding xentry/dentry names.
14631e51764aSArtem Bityutskiy 			 */
14641e51764aSArtem Bityutskiy 			err = dbg_check_key_order(c, &znode->zbranch[n - 1],
14651e51764aSArtem Bityutskiy 						  &znode->zbranch[n]);
14661e51764aSArtem Bityutskiy 			if (err < 0)
14671e51764aSArtem Bityutskiy 				return err;
14681e51764aSArtem Bityutskiy 			if (err) {
14691e51764aSArtem Bityutskiy 				err = 15;
14701e51764aSArtem Bityutskiy 				goto out;
14711e51764aSArtem Bityutskiy 			}
14721e51764aSArtem Bityutskiy 		}
14731e51764aSArtem Bityutskiy 	}
14741e51764aSArtem Bityutskiy 
14751e51764aSArtem Bityutskiy 	for (n = 0; n < znode->child_cnt; n++) {
14761e51764aSArtem Bityutskiy 		if (!znode->zbranch[n].znode &&
14771e51764aSArtem Bityutskiy 		    (znode->zbranch[n].lnum == 0 ||
14781e51764aSArtem Bityutskiy 		     znode->zbranch[n].len == 0)) {
14791e51764aSArtem Bityutskiy 			err = 16;
14801e51764aSArtem Bityutskiy 			goto out;
14811e51764aSArtem Bityutskiy 		}
14821e51764aSArtem Bityutskiy 
14831e51764aSArtem Bityutskiy 		if (znode->zbranch[n].lnum != 0 &&
14841e51764aSArtem Bityutskiy 		    znode->zbranch[n].len == 0) {
14851e51764aSArtem Bityutskiy 			err = 17;
14861e51764aSArtem Bityutskiy 			goto out;
14871e51764aSArtem Bityutskiy 		}
14881e51764aSArtem Bityutskiy 
14891e51764aSArtem Bityutskiy 		if (znode->zbranch[n].lnum == 0 &&
14901e51764aSArtem Bityutskiy 		    znode->zbranch[n].len != 0) {
14911e51764aSArtem Bityutskiy 			err = 18;
14921e51764aSArtem Bityutskiy 			goto out;
14931e51764aSArtem Bityutskiy 		}
14941e51764aSArtem Bityutskiy 
14951e51764aSArtem Bityutskiy 		if (znode->zbranch[n].lnum == 0 &&
14961e51764aSArtem Bityutskiy 		    znode->zbranch[n].offs != 0) {
14971e51764aSArtem Bityutskiy 			err = 19;
14981e51764aSArtem Bityutskiy 			goto out;
14991e51764aSArtem Bityutskiy 		}
15001e51764aSArtem Bityutskiy 
15011e51764aSArtem Bityutskiy 		if (znode->level != 0 && znode->zbranch[n].znode)
15021e51764aSArtem Bityutskiy 			if (znode->zbranch[n].znode->parent != znode) {
15031e51764aSArtem Bityutskiy 				err = 20;
15041e51764aSArtem Bityutskiy 				goto out;
15051e51764aSArtem Bityutskiy 			}
15061e51764aSArtem Bityutskiy 	}
15071e51764aSArtem Bityutskiy 
15081e51764aSArtem Bityutskiy 	return 0;
15091e51764aSArtem Bityutskiy 
15101e51764aSArtem Bityutskiy out:
15111e51764aSArtem Bityutskiy 	ubifs_err("failed, error %d", err);
15121e51764aSArtem Bityutskiy 	ubifs_msg("dump of the znode");
15131e51764aSArtem Bityutskiy 	dbg_dump_znode(c, znode);
15141e51764aSArtem Bityutskiy 	if (zp) {
15151e51764aSArtem Bityutskiy 		ubifs_msg("dump of the parent znode");
15161e51764aSArtem Bityutskiy 		dbg_dump_znode(c, zp);
15171e51764aSArtem Bityutskiy 	}
15181e51764aSArtem Bityutskiy 	dump_stack();
15191e51764aSArtem Bityutskiy 	return -EINVAL;
15201e51764aSArtem Bityutskiy }
15211e51764aSArtem Bityutskiy 
15221e51764aSArtem Bityutskiy /**
15231e51764aSArtem Bityutskiy  * dbg_check_tnc - check TNC tree.
15241e51764aSArtem Bityutskiy  * @c: UBIFS file-system description object
15251e51764aSArtem Bityutskiy  * @extra: do extra checks that are possible at start commit
15261e51764aSArtem Bityutskiy  *
15271e51764aSArtem Bityutskiy  * This function traverses whole TNC tree and checks every znode. Returns zero
15281e51764aSArtem Bityutskiy  * if everything is all right and %-EINVAL if something is wrong with TNC.
15291e51764aSArtem Bityutskiy  */
15301e51764aSArtem Bityutskiy int dbg_check_tnc(struct ubifs_info *c, int extra)
15311e51764aSArtem Bityutskiy {
15321e51764aSArtem Bityutskiy 	struct ubifs_znode *znode;
15331e51764aSArtem Bityutskiy 	long clean_cnt = 0, dirty_cnt = 0;
15341e51764aSArtem Bityutskiy 	int err, last;
15351e51764aSArtem Bityutskiy 
15368d7819b4SArtem Bityutskiy 	if (!dbg_is_chk_index(c))
15371e51764aSArtem Bityutskiy 		return 0;
15381e51764aSArtem Bityutskiy 
15391e51764aSArtem Bityutskiy 	ubifs_assert(mutex_is_locked(&c->tnc_mutex));
15401e51764aSArtem Bityutskiy 	if (!c->zroot.znode)
15411e51764aSArtem Bityutskiy 		return 0;
15421e51764aSArtem Bityutskiy 
15431e51764aSArtem Bityutskiy 	znode = ubifs_tnc_postorder_first(c->zroot.znode);
15441e51764aSArtem Bityutskiy 	while (1) {
15451e51764aSArtem Bityutskiy 		struct ubifs_znode *prev;
15461e51764aSArtem Bityutskiy 		struct ubifs_zbranch *zbr;
15471e51764aSArtem Bityutskiy 
15481e51764aSArtem Bityutskiy 		if (!znode->parent)
15491e51764aSArtem Bityutskiy 			zbr = &c->zroot;
15501e51764aSArtem Bityutskiy 		else
15511e51764aSArtem Bityutskiy 			zbr = &znode->parent->zbranch[znode->iip];
15521e51764aSArtem Bityutskiy 
15531e51764aSArtem Bityutskiy 		err = dbg_check_znode(c, zbr);
15541e51764aSArtem Bityutskiy 		if (err)
15551e51764aSArtem Bityutskiy 			return err;
15561e51764aSArtem Bityutskiy 
15571e51764aSArtem Bityutskiy 		if (extra) {
15581e51764aSArtem Bityutskiy 			if (ubifs_zn_dirty(znode))
15591e51764aSArtem Bityutskiy 				dirty_cnt += 1;
15601e51764aSArtem Bityutskiy 			else
15611e51764aSArtem Bityutskiy 				clean_cnt += 1;
15621e51764aSArtem Bityutskiy 		}
15631e51764aSArtem Bityutskiy 
15641e51764aSArtem Bityutskiy 		prev = znode;
15651e51764aSArtem Bityutskiy 		znode = ubifs_tnc_postorder_next(znode);
15661e51764aSArtem Bityutskiy 		if (!znode)
15671e51764aSArtem Bityutskiy 			break;
15681e51764aSArtem Bityutskiy 
15691e51764aSArtem Bityutskiy 		/*
15701e51764aSArtem Bityutskiy 		 * If the last key of this znode is equivalent to the first key
15711e51764aSArtem Bityutskiy 		 * of the next znode (collision), then check order of the keys.
15721e51764aSArtem Bityutskiy 		 */
15731e51764aSArtem Bityutskiy 		last = prev->child_cnt - 1;
15741e51764aSArtem Bityutskiy 		if (prev->level == 0 && znode->level == 0 && !c->replaying &&
15751e51764aSArtem Bityutskiy 		    !keys_cmp(c, &prev->zbranch[last].key,
15761e51764aSArtem Bityutskiy 			      &znode->zbranch[0].key)) {
15771e51764aSArtem Bityutskiy 			err = dbg_check_key_order(c, &prev->zbranch[last],
15781e51764aSArtem Bityutskiy 						  &znode->zbranch[0]);
15791e51764aSArtem Bityutskiy 			if (err < 0)
15801e51764aSArtem Bityutskiy 				return err;
15811e51764aSArtem Bityutskiy 			if (err) {
15821e51764aSArtem Bityutskiy 				ubifs_msg("first znode");
15831e51764aSArtem Bityutskiy 				dbg_dump_znode(c, prev);
15841e51764aSArtem Bityutskiy 				ubifs_msg("second znode");
15851e51764aSArtem Bityutskiy 				dbg_dump_znode(c, znode);
15861e51764aSArtem Bityutskiy 				return -EINVAL;
15871e51764aSArtem Bityutskiy 			}
15881e51764aSArtem Bityutskiy 		}
15891e51764aSArtem Bityutskiy 	}
15901e51764aSArtem Bityutskiy 
15911e51764aSArtem Bityutskiy 	if (extra) {
15921e51764aSArtem Bityutskiy 		if (clean_cnt != atomic_long_read(&c->clean_zn_cnt)) {
15931e51764aSArtem Bityutskiy 			ubifs_err("incorrect clean_zn_cnt %ld, calculated %ld",
15941e51764aSArtem Bityutskiy 				  atomic_long_read(&c->clean_zn_cnt),
15951e51764aSArtem Bityutskiy 				  clean_cnt);
15961e51764aSArtem Bityutskiy 			return -EINVAL;
15971e51764aSArtem Bityutskiy 		}
15981e51764aSArtem Bityutskiy 		if (dirty_cnt != atomic_long_read(&c->dirty_zn_cnt)) {
15991e51764aSArtem Bityutskiy 			ubifs_err("incorrect dirty_zn_cnt %ld, calculated %ld",
16001e51764aSArtem Bityutskiy 				  atomic_long_read(&c->dirty_zn_cnt),
16011e51764aSArtem Bityutskiy 				  dirty_cnt);
16021e51764aSArtem Bityutskiy 			return -EINVAL;
16031e51764aSArtem Bityutskiy 		}
16041e51764aSArtem Bityutskiy 	}
16051e51764aSArtem Bityutskiy 
16061e51764aSArtem Bityutskiy 	return 0;
16071e51764aSArtem Bityutskiy }
16081e51764aSArtem Bityutskiy 
16091e51764aSArtem Bityutskiy /**
16101e51764aSArtem Bityutskiy  * dbg_walk_index - walk the on-flash index.
16111e51764aSArtem Bityutskiy  * @c: UBIFS file-system description object
16121e51764aSArtem Bityutskiy  * @leaf_cb: called for each leaf node
16131e51764aSArtem Bityutskiy  * @znode_cb: called for each indexing node
1614227c75c9SAdrian Hunter  * @priv: private data which is passed to callbacks
16151e51764aSArtem Bityutskiy  *
16161e51764aSArtem Bityutskiy  * This function walks the UBIFS index and calls the @leaf_cb for each leaf
16171e51764aSArtem Bityutskiy  * node and @znode_cb for each indexing node. Returns zero in case of success
16181e51764aSArtem Bityutskiy  * and a negative error code in case of failure.
16191e51764aSArtem Bityutskiy  *
16201e51764aSArtem Bityutskiy  * It would be better if this function removed every znode it pulled to into
16211e51764aSArtem Bityutskiy  * the TNC, so that the behavior more closely matched the non-debugging
16221e51764aSArtem Bityutskiy  * behavior.
16231e51764aSArtem Bityutskiy  */
16241e51764aSArtem Bityutskiy int dbg_walk_index(struct ubifs_info *c, dbg_leaf_callback leaf_cb,
16251e51764aSArtem Bityutskiy 		   dbg_znode_callback znode_cb, void *priv)
16261e51764aSArtem Bityutskiy {
16271e51764aSArtem Bityutskiy 	int err;
16281e51764aSArtem Bityutskiy 	struct ubifs_zbranch *zbr;
16291e51764aSArtem Bityutskiy 	struct ubifs_znode *znode, *child;
16301e51764aSArtem Bityutskiy 
16311e51764aSArtem Bityutskiy 	mutex_lock(&c->tnc_mutex);
16321e51764aSArtem Bityutskiy 	/* If the root indexing node is not in TNC - pull it */
16331e51764aSArtem Bityutskiy 	if (!c->zroot.znode) {
16341e51764aSArtem Bityutskiy 		c->zroot.znode = ubifs_load_znode(c, &c->zroot, NULL, 0);
16351e51764aSArtem Bityutskiy 		if (IS_ERR(c->zroot.znode)) {
16361e51764aSArtem Bityutskiy 			err = PTR_ERR(c->zroot.znode);
16371e51764aSArtem Bityutskiy 			c->zroot.znode = NULL;
16381e51764aSArtem Bityutskiy 			goto out_unlock;
16391e51764aSArtem Bityutskiy 		}
16401e51764aSArtem Bityutskiy 	}
16411e51764aSArtem Bityutskiy 
16421e51764aSArtem Bityutskiy 	/*
16431e51764aSArtem Bityutskiy 	 * We are going to traverse the indexing tree in the postorder manner.
16441e51764aSArtem Bityutskiy 	 * Go down and find the leftmost indexing node where we are going to
16451e51764aSArtem Bityutskiy 	 * start from.
16461e51764aSArtem Bityutskiy 	 */
16471e51764aSArtem Bityutskiy 	znode = c->zroot.znode;
16481e51764aSArtem Bityutskiy 	while (znode->level > 0) {
16491e51764aSArtem Bityutskiy 		zbr = &znode->zbranch[0];
16501e51764aSArtem Bityutskiy 		child = zbr->znode;
16511e51764aSArtem Bityutskiy 		if (!child) {
16521e51764aSArtem Bityutskiy 			child = ubifs_load_znode(c, zbr, znode, 0);
16531e51764aSArtem Bityutskiy 			if (IS_ERR(child)) {
16541e51764aSArtem Bityutskiy 				err = PTR_ERR(child);
16551e51764aSArtem Bityutskiy 				goto out_unlock;
16561e51764aSArtem Bityutskiy 			}
16571e51764aSArtem Bityutskiy 			zbr->znode = child;
16581e51764aSArtem Bityutskiy 		}
16591e51764aSArtem Bityutskiy 
16601e51764aSArtem Bityutskiy 		znode = child;
16611e51764aSArtem Bityutskiy 	}
16621e51764aSArtem Bityutskiy 
16631e51764aSArtem Bityutskiy 	/* Iterate over all indexing nodes */
16641e51764aSArtem Bityutskiy 	while (1) {
16651e51764aSArtem Bityutskiy 		int idx;
16661e51764aSArtem Bityutskiy 
16671e51764aSArtem Bityutskiy 		cond_resched();
16681e51764aSArtem Bityutskiy 
16691e51764aSArtem Bityutskiy 		if (znode_cb) {
16701e51764aSArtem Bityutskiy 			err = znode_cb(c, znode, priv);
16711e51764aSArtem Bityutskiy 			if (err) {
16721e51764aSArtem Bityutskiy 				ubifs_err("znode checking function returned "
16731e51764aSArtem Bityutskiy 					  "error %d", err);
16741e51764aSArtem Bityutskiy 				dbg_dump_znode(c, znode);
16751e51764aSArtem Bityutskiy 				goto out_dump;
16761e51764aSArtem Bityutskiy 			}
16771e51764aSArtem Bityutskiy 		}
16781e51764aSArtem Bityutskiy 		if (leaf_cb && znode->level == 0) {
16791e51764aSArtem Bityutskiy 			for (idx = 0; idx < znode->child_cnt; idx++) {
16801e51764aSArtem Bityutskiy 				zbr = &znode->zbranch[idx];
16811e51764aSArtem Bityutskiy 				err = leaf_cb(c, zbr, priv);
16821e51764aSArtem Bityutskiy 				if (err) {
16831e51764aSArtem Bityutskiy 					ubifs_err("leaf checking function "
16841e51764aSArtem Bityutskiy 						  "returned error %d, for leaf "
16851e51764aSArtem Bityutskiy 						  "at LEB %d:%d",
16861e51764aSArtem Bityutskiy 						  err, zbr->lnum, zbr->offs);
16871e51764aSArtem Bityutskiy 					goto out_dump;
16881e51764aSArtem Bityutskiy 				}
16891e51764aSArtem Bityutskiy 			}
16901e51764aSArtem Bityutskiy 		}
16911e51764aSArtem Bityutskiy 
16921e51764aSArtem Bityutskiy 		if (!znode->parent)
16931e51764aSArtem Bityutskiy 			break;
16941e51764aSArtem Bityutskiy 
16951e51764aSArtem Bityutskiy 		idx = znode->iip + 1;
16961e51764aSArtem Bityutskiy 		znode = znode->parent;
16971e51764aSArtem Bityutskiy 		if (idx < znode->child_cnt) {
16981e51764aSArtem Bityutskiy 			/* Switch to the next index in the parent */
16991e51764aSArtem Bityutskiy 			zbr = &znode->zbranch[idx];
17001e51764aSArtem Bityutskiy 			child = zbr->znode;
17011e51764aSArtem Bityutskiy 			if (!child) {
17021e51764aSArtem Bityutskiy 				child = ubifs_load_znode(c, zbr, znode, idx);
17031e51764aSArtem Bityutskiy 				if (IS_ERR(child)) {
17041e51764aSArtem Bityutskiy 					err = PTR_ERR(child);
17051e51764aSArtem Bityutskiy 					goto out_unlock;
17061e51764aSArtem Bityutskiy 				}
17071e51764aSArtem Bityutskiy 				zbr->znode = child;
17081e51764aSArtem Bityutskiy 			}
17091e51764aSArtem Bityutskiy 			znode = child;
17101e51764aSArtem Bityutskiy 		} else
17111e51764aSArtem Bityutskiy 			/*
17121e51764aSArtem Bityutskiy 			 * This is the last child, switch to the parent and
17131e51764aSArtem Bityutskiy 			 * continue.
17141e51764aSArtem Bityutskiy 			 */
17151e51764aSArtem Bityutskiy 			continue;
17161e51764aSArtem Bityutskiy 
17171e51764aSArtem Bityutskiy 		/* Go to the lowest leftmost znode in the new sub-tree */
17181e51764aSArtem Bityutskiy 		while (znode->level > 0) {
17191e51764aSArtem Bityutskiy 			zbr = &znode->zbranch[0];
17201e51764aSArtem Bityutskiy 			child = zbr->znode;
17211e51764aSArtem Bityutskiy 			if (!child) {
17221e51764aSArtem Bityutskiy 				child = ubifs_load_znode(c, zbr, znode, 0);
17231e51764aSArtem Bityutskiy 				if (IS_ERR(child)) {
17241e51764aSArtem Bityutskiy 					err = PTR_ERR(child);
17251e51764aSArtem Bityutskiy 					goto out_unlock;
17261e51764aSArtem Bityutskiy 				}
17271e51764aSArtem Bityutskiy 				zbr->znode = child;
17281e51764aSArtem Bityutskiy 			}
17291e51764aSArtem Bityutskiy 			znode = child;
17301e51764aSArtem Bityutskiy 		}
17311e51764aSArtem Bityutskiy 	}
17321e51764aSArtem Bityutskiy 
17331e51764aSArtem Bityutskiy 	mutex_unlock(&c->tnc_mutex);
17341e51764aSArtem Bityutskiy 	return 0;
17351e51764aSArtem Bityutskiy 
17361e51764aSArtem Bityutskiy out_dump:
17371e51764aSArtem Bityutskiy 	if (znode->parent)
17381e51764aSArtem Bityutskiy 		zbr = &znode->parent->zbranch[znode->iip];
17391e51764aSArtem Bityutskiy 	else
17401e51764aSArtem Bityutskiy 		zbr = &c->zroot;
17411e51764aSArtem Bityutskiy 	ubifs_msg("dump of znode at LEB %d:%d", zbr->lnum, zbr->offs);
17421e51764aSArtem Bityutskiy 	dbg_dump_znode(c, znode);
17431e51764aSArtem Bityutskiy out_unlock:
17441e51764aSArtem Bityutskiy 	mutex_unlock(&c->tnc_mutex);
17451e51764aSArtem Bityutskiy 	return err;
17461e51764aSArtem Bityutskiy }
17471e51764aSArtem Bityutskiy 
17481e51764aSArtem Bityutskiy /**
17491e51764aSArtem Bityutskiy  * add_size - add znode size to partially calculated index size.
17501e51764aSArtem Bityutskiy  * @c: UBIFS file-system description object
17511e51764aSArtem Bityutskiy  * @znode: znode to add size for
17521e51764aSArtem Bityutskiy  * @priv: partially calculated index size
17531e51764aSArtem Bityutskiy  *
17541e51764aSArtem Bityutskiy  * This is a helper function for 'dbg_check_idx_size()' which is called for
17551e51764aSArtem Bityutskiy  * every indexing node and adds its size to the 'long long' variable pointed to
17561e51764aSArtem Bityutskiy  * by @priv.
17571e51764aSArtem Bityutskiy  */
17581e51764aSArtem Bityutskiy static int add_size(struct ubifs_info *c, struct ubifs_znode *znode, void *priv)
17591e51764aSArtem Bityutskiy {
17601e51764aSArtem Bityutskiy 	long long *idx_size = priv;
17611e51764aSArtem Bityutskiy 	int add;
17621e51764aSArtem Bityutskiy 
17631e51764aSArtem Bityutskiy 	add = ubifs_idx_node_sz(c, znode->child_cnt);
17641e51764aSArtem Bityutskiy 	add = ALIGN(add, 8);
17651e51764aSArtem Bityutskiy 	*idx_size += add;
17661e51764aSArtem Bityutskiy 	return 0;
17671e51764aSArtem Bityutskiy }
17681e51764aSArtem Bityutskiy 
17691e51764aSArtem Bityutskiy /**
17701e51764aSArtem Bityutskiy  * dbg_check_idx_size - check index size.
17711e51764aSArtem Bityutskiy  * @c: UBIFS file-system description object
17721e51764aSArtem Bityutskiy  * @idx_size: size to check
17731e51764aSArtem Bityutskiy  *
17741e51764aSArtem Bityutskiy  * This function walks the UBIFS index, calculates its size and checks that the
17751e51764aSArtem Bityutskiy  * size is equivalent to @idx_size. Returns zero in case of success and a
17761e51764aSArtem Bityutskiy  * negative error code in case of failure.
17771e51764aSArtem Bityutskiy  */
17781e51764aSArtem Bityutskiy int dbg_check_idx_size(struct ubifs_info *c, long long idx_size)
17791e51764aSArtem Bityutskiy {
17801e51764aSArtem Bityutskiy 	int err;
17811e51764aSArtem Bityutskiy 	long long calc = 0;
17821e51764aSArtem Bityutskiy 
17838d7819b4SArtem Bityutskiy 	if (!dbg_is_chk_index(c))
17841e51764aSArtem Bityutskiy 		return 0;
17851e51764aSArtem Bityutskiy 
17861e51764aSArtem Bityutskiy 	err = dbg_walk_index(c, NULL, add_size, &calc);
17871e51764aSArtem Bityutskiy 	if (err) {
17881e51764aSArtem Bityutskiy 		ubifs_err("error %d while walking the index", err);
17891e51764aSArtem Bityutskiy 		return err;
17901e51764aSArtem Bityutskiy 	}
17911e51764aSArtem Bityutskiy 
17921e51764aSArtem Bityutskiy 	if (calc != idx_size) {
17931e51764aSArtem Bityutskiy 		ubifs_err("index size check failed: calculated size is %lld, "
17941e51764aSArtem Bityutskiy 			  "should be %lld", calc, idx_size);
17951e51764aSArtem Bityutskiy 		dump_stack();
17961e51764aSArtem Bityutskiy 		return -EINVAL;
17971e51764aSArtem Bityutskiy 	}
17981e51764aSArtem Bityutskiy 
17991e51764aSArtem Bityutskiy 	return 0;
18001e51764aSArtem Bityutskiy }
18011e51764aSArtem Bityutskiy 
18021e51764aSArtem Bityutskiy /**
18031e51764aSArtem Bityutskiy  * struct fsck_inode - information about an inode used when checking the file-system.
18041e51764aSArtem Bityutskiy  * @rb: link in the RB-tree of inodes
18051e51764aSArtem Bityutskiy  * @inum: inode number
18061e51764aSArtem Bityutskiy  * @mode: inode type, permissions, etc
18071e51764aSArtem Bityutskiy  * @nlink: inode link count
18081e51764aSArtem Bityutskiy  * @xattr_cnt: count of extended attributes
18091e51764aSArtem Bityutskiy  * @references: how many directory/xattr entries refer this inode (calculated
18101e51764aSArtem Bityutskiy  *              while walking the index)
18111e51764aSArtem Bityutskiy  * @calc_cnt: for directory inode count of child directories
18121e51764aSArtem Bityutskiy  * @size: inode size (read from on-flash inode)
18131e51764aSArtem Bityutskiy  * @xattr_sz: summary size of all extended attributes (read from on-flash
18141e51764aSArtem Bityutskiy  *            inode)
18151e51764aSArtem Bityutskiy  * @calc_sz: for directories calculated directory size
18161e51764aSArtem Bityutskiy  * @calc_xcnt: count of extended attributes
18171e51764aSArtem Bityutskiy  * @calc_xsz: calculated summary size of all extended attributes
18181e51764aSArtem Bityutskiy  * @xattr_nms: sum of lengths of all extended attribute names belonging to this
18191e51764aSArtem Bityutskiy  *             inode (read from on-flash inode)
18201e51764aSArtem Bityutskiy  * @calc_xnms: calculated sum of lengths of all extended attribute names
18211e51764aSArtem Bityutskiy  */
18221e51764aSArtem Bityutskiy struct fsck_inode {
18231e51764aSArtem Bityutskiy 	struct rb_node rb;
18241e51764aSArtem Bityutskiy 	ino_t inum;
18251e51764aSArtem Bityutskiy 	umode_t mode;
18261e51764aSArtem Bityutskiy 	unsigned int nlink;
18271e51764aSArtem Bityutskiy 	unsigned int xattr_cnt;
18281e51764aSArtem Bityutskiy 	int references;
18291e51764aSArtem Bityutskiy 	int calc_cnt;
18301e51764aSArtem Bityutskiy 	long long size;
18311e51764aSArtem Bityutskiy 	unsigned int xattr_sz;
18321e51764aSArtem Bityutskiy 	long long calc_sz;
18331e51764aSArtem Bityutskiy 	long long calc_xcnt;
18341e51764aSArtem Bityutskiy 	long long calc_xsz;
18351e51764aSArtem Bityutskiy 	unsigned int xattr_nms;
18361e51764aSArtem Bityutskiy 	long long calc_xnms;
18371e51764aSArtem Bityutskiy };
18381e51764aSArtem Bityutskiy 
18391e51764aSArtem Bityutskiy /**
18401e51764aSArtem Bityutskiy  * struct fsck_data - private FS checking information.
18411e51764aSArtem Bityutskiy  * @inodes: RB-tree of all inodes (contains @struct fsck_inode objects)
18421e51764aSArtem Bityutskiy  */
18431e51764aSArtem Bityutskiy struct fsck_data {
18441e51764aSArtem Bityutskiy 	struct rb_root inodes;
18451e51764aSArtem Bityutskiy };
18461e51764aSArtem Bityutskiy 
18471e51764aSArtem Bityutskiy /**
18481e51764aSArtem Bityutskiy  * add_inode - add inode information to RB-tree of inodes.
18491e51764aSArtem Bityutskiy  * @c: UBIFS file-system description object
18501e51764aSArtem Bityutskiy  * @fsckd: FS checking information
18511e51764aSArtem Bityutskiy  * @ino: raw UBIFS inode to add
18521e51764aSArtem Bityutskiy  *
18531e51764aSArtem Bityutskiy  * This is a helper function for 'check_leaf()' which adds information about
18541e51764aSArtem Bityutskiy  * inode @ino to the RB-tree of inodes. Returns inode information pointer in
18551e51764aSArtem Bityutskiy  * case of success and a negative error code in case of failure.
18561e51764aSArtem Bityutskiy  */
18571e51764aSArtem Bityutskiy static struct fsck_inode *add_inode(struct ubifs_info *c,
18581e51764aSArtem Bityutskiy 				    struct fsck_data *fsckd,
18591e51764aSArtem Bityutskiy 				    struct ubifs_ino_node *ino)
18601e51764aSArtem Bityutskiy {
18611e51764aSArtem Bityutskiy 	struct rb_node **p, *parent = NULL;
18621e51764aSArtem Bityutskiy 	struct fsck_inode *fscki;
18631e51764aSArtem Bityutskiy 	ino_t inum = key_inum_flash(c, &ino->key);
186445cd5cddSArtem Bityutskiy 	struct inode *inode;
186545cd5cddSArtem Bityutskiy 	struct ubifs_inode *ui;
18661e51764aSArtem Bityutskiy 
18671e51764aSArtem Bityutskiy 	p = &fsckd->inodes.rb_node;
18681e51764aSArtem Bityutskiy 	while (*p) {
18691e51764aSArtem Bityutskiy 		parent = *p;
18701e51764aSArtem Bityutskiy 		fscki = rb_entry(parent, struct fsck_inode, rb);
18711e51764aSArtem Bityutskiy 		if (inum < fscki->inum)
18721e51764aSArtem Bityutskiy 			p = &(*p)->rb_left;
18731e51764aSArtem Bityutskiy 		else if (inum > fscki->inum)
18741e51764aSArtem Bityutskiy 			p = &(*p)->rb_right;
18751e51764aSArtem Bityutskiy 		else
18761e51764aSArtem Bityutskiy 			return fscki;
18771e51764aSArtem Bityutskiy 	}
18781e51764aSArtem Bityutskiy 
18791e51764aSArtem Bityutskiy 	if (inum > c->highest_inum) {
18801e51764aSArtem Bityutskiy 		ubifs_err("too high inode number, max. is %lu",
1881e84461adSArtem Bityutskiy 			  (unsigned long)c->highest_inum);
18821e51764aSArtem Bityutskiy 		return ERR_PTR(-EINVAL);
18831e51764aSArtem Bityutskiy 	}
18841e51764aSArtem Bityutskiy 
18851e51764aSArtem Bityutskiy 	fscki = kzalloc(sizeof(struct fsck_inode), GFP_NOFS);
18861e51764aSArtem Bityutskiy 	if (!fscki)
18871e51764aSArtem Bityutskiy 		return ERR_PTR(-ENOMEM);
18881e51764aSArtem Bityutskiy 
188945cd5cddSArtem Bityutskiy 	inode = ilookup(c->vfs_sb, inum);
189045cd5cddSArtem Bityutskiy 
18911e51764aSArtem Bityutskiy 	fscki->inum = inum;
189245cd5cddSArtem Bityutskiy 	/*
189345cd5cddSArtem Bityutskiy 	 * If the inode is present in the VFS inode cache, use it instead of
189445cd5cddSArtem Bityutskiy 	 * the on-flash inode which might be out-of-date. E.g., the size might
189545cd5cddSArtem Bityutskiy 	 * be out-of-date. If we do not do this, the following may happen, for
189645cd5cddSArtem Bityutskiy 	 * example:
189745cd5cddSArtem Bityutskiy 	 *   1. A power cut happens
189845cd5cddSArtem Bityutskiy 	 *   2. We mount the file-system R/O, the replay process fixes up the
189945cd5cddSArtem Bityutskiy 	 *      inode size in the VFS cache, but on on-flash.
190045cd5cddSArtem Bityutskiy 	 *   3. 'check_leaf()' fails because it hits a data node beyond inode
190145cd5cddSArtem Bityutskiy 	 *      size.
190245cd5cddSArtem Bityutskiy 	 */
190345cd5cddSArtem Bityutskiy 	if (!inode) {
19041e51764aSArtem Bityutskiy 		fscki->nlink = le32_to_cpu(ino->nlink);
19051e51764aSArtem Bityutskiy 		fscki->size = le64_to_cpu(ino->size);
19061e51764aSArtem Bityutskiy 		fscki->xattr_cnt = le32_to_cpu(ino->xattr_cnt);
19071e51764aSArtem Bityutskiy 		fscki->xattr_sz = le32_to_cpu(ino->xattr_size);
19081e51764aSArtem Bityutskiy 		fscki->xattr_nms = le32_to_cpu(ino->xattr_names);
19091e51764aSArtem Bityutskiy 		fscki->mode = le32_to_cpu(ino->mode);
191045cd5cddSArtem Bityutskiy 	} else {
191145cd5cddSArtem Bityutskiy 		ui = ubifs_inode(inode);
191245cd5cddSArtem Bityutskiy 		fscki->nlink = inode->i_nlink;
191345cd5cddSArtem Bityutskiy 		fscki->size = inode->i_size;
191445cd5cddSArtem Bityutskiy 		fscki->xattr_cnt = ui->xattr_cnt;
191545cd5cddSArtem Bityutskiy 		fscki->xattr_sz = ui->xattr_size;
191645cd5cddSArtem Bityutskiy 		fscki->xattr_nms = ui->xattr_names;
191745cd5cddSArtem Bityutskiy 		fscki->mode = inode->i_mode;
191845cd5cddSArtem Bityutskiy 		iput(inode);
191945cd5cddSArtem Bityutskiy 	}
192045cd5cddSArtem Bityutskiy 
19211e51764aSArtem Bityutskiy 	if (S_ISDIR(fscki->mode)) {
19221e51764aSArtem Bityutskiy 		fscki->calc_sz = UBIFS_INO_NODE_SZ;
19231e51764aSArtem Bityutskiy 		fscki->calc_cnt = 2;
19241e51764aSArtem Bityutskiy 	}
192545cd5cddSArtem Bityutskiy 
19261e51764aSArtem Bityutskiy 	rb_link_node(&fscki->rb, parent, p);
19271e51764aSArtem Bityutskiy 	rb_insert_color(&fscki->rb, &fsckd->inodes);
192845cd5cddSArtem Bityutskiy 
19291e51764aSArtem Bityutskiy 	return fscki;
19301e51764aSArtem Bityutskiy }
19311e51764aSArtem Bityutskiy 
19321e51764aSArtem Bityutskiy /**
19331e51764aSArtem Bityutskiy  * search_inode - search inode in the RB-tree of inodes.
19341e51764aSArtem Bityutskiy  * @fsckd: FS checking information
19351e51764aSArtem Bityutskiy  * @inum: inode number to search
19361e51764aSArtem Bityutskiy  *
19371e51764aSArtem Bityutskiy  * This is a helper function for 'check_leaf()' which searches inode @inum in
19381e51764aSArtem Bityutskiy  * the RB-tree of inodes and returns an inode information pointer or %NULL if
19391e51764aSArtem Bityutskiy  * the inode was not found.
19401e51764aSArtem Bityutskiy  */
19411e51764aSArtem Bityutskiy static struct fsck_inode *search_inode(struct fsck_data *fsckd, ino_t inum)
19421e51764aSArtem Bityutskiy {
19431e51764aSArtem Bityutskiy 	struct rb_node *p;
19441e51764aSArtem Bityutskiy 	struct fsck_inode *fscki;
19451e51764aSArtem Bityutskiy 
19461e51764aSArtem Bityutskiy 	p = fsckd->inodes.rb_node;
19471e51764aSArtem Bityutskiy 	while (p) {
19481e51764aSArtem Bityutskiy 		fscki = rb_entry(p, struct fsck_inode, rb);
19491e51764aSArtem Bityutskiy 		if (inum < fscki->inum)
19501e51764aSArtem Bityutskiy 			p = p->rb_left;
19511e51764aSArtem Bityutskiy 		else if (inum > fscki->inum)
19521e51764aSArtem Bityutskiy 			p = p->rb_right;
19531e51764aSArtem Bityutskiy 		else
19541e51764aSArtem Bityutskiy 			return fscki;
19551e51764aSArtem Bityutskiy 	}
19561e51764aSArtem Bityutskiy 	return NULL;
19571e51764aSArtem Bityutskiy }
19581e51764aSArtem Bityutskiy 
19591e51764aSArtem Bityutskiy /**
19601e51764aSArtem Bityutskiy  * read_add_inode - read inode node and add it to RB-tree of inodes.
19611e51764aSArtem Bityutskiy  * @c: UBIFS file-system description object
19621e51764aSArtem Bityutskiy  * @fsckd: FS checking information
19631e51764aSArtem Bityutskiy  * @inum: inode number to read
19641e51764aSArtem Bityutskiy  *
19651e51764aSArtem Bityutskiy  * This is a helper function for 'check_leaf()' which finds inode node @inum in
19661e51764aSArtem Bityutskiy  * the index, reads it, and adds it to the RB-tree of inodes. Returns inode
19671e51764aSArtem Bityutskiy  * information pointer in case of success and a negative error code in case of
19681e51764aSArtem Bityutskiy  * failure.
19691e51764aSArtem Bityutskiy  */
19701e51764aSArtem Bityutskiy static struct fsck_inode *read_add_inode(struct ubifs_info *c,
19711e51764aSArtem Bityutskiy 					 struct fsck_data *fsckd, ino_t inum)
19721e51764aSArtem Bityutskiy {
19731e51764aSArtem Bityutskiy 	int n, err;
19741e51764aSArtem Bityutskiy 	union ubifs_key key;
19751e51764aSArtem Bityutskiy 	struct ubifs_znode *znode;
19761e51764aSArtem Bityutskiy 	struct ubifs_zbranch *zbr;
19771e51764aSArtem Bityutskiy 	struct ubifs_ino_node *ino;
19781e51764aSArtem Bityutskiy 	struct fsck_inode *fscki;
19791e51764aSArtem Bityutskiy 
19801e51764aSArtem Bityutskiy 	fscki = search_inode(fsckd, inum);
19811e51764aSArtem Bityutskiy 	if (fscki)
19821e51764aSArtem Bityutskiy 		return fscki;
19831e51764aSArtem Bityutskiy 
19841e51764aSArtem Bityutskiy 	ino_key_init(c, &key, inum);
19851e51764aSArtem Bityutskiy 	err = ubifs_lookup_level0(c, &key, &znode, &n);
19861e51764aSArtem Bityutskiy 	if (!err) {
1987e84461adSArtem Bityutskiy 		ubifs_err("inode %lu not found in index", (unsigned long)inum);
19881e51764aSArtem Bityutskiy 		return ERR_PTR(-ENOENT);
19891e51764aSArtem Bityutskiy 	} else if (err < 0) {
1990e84461adSArtem Bityutskiy 		ubifs_err("error %d while looking up inode %lu",
1991e84461adSArtem Bityutskiy 			  err, (unsigned long)inum);
19921e51764aSArtem Bityutskiy 		return ERR_PTR(err);
19931e51764aSArtem Bityutskiy 	}
19941e51764aSArtem Bityutskiy 
19951e51764aSArtem Bityutskiy 	zbr = &znode->zbranch[n];
19961e51764aSArtem Bityutskiy 	if (zbr->len < UBIFS_INO_NODE_SZ) {
1997e84461adSArtem Bityutskiy 		ubifs_err("bad node %lu node length %d",
1998e84461adSArtem Bityutskiy 			  (unsigned long)inum, zbr->len);
19991e51764aSArtem Bityutskiy 		return ERR_PTR(-EINVAL);
20001e51764aSArtem Bityutskiy 	}
20011e51764aSArtem Bityutskiy 
20021e51764aSArtem Bityutskiy 	ino = kmalloc(zbr->len, GFP_NOFS);
20031e51764aSArtem Bityutskiy 	if (!ino)
20041e51764aSArtem Bityutskiy 		return ERR_PTR(-ENOMEM);
20051e51764aSArtem Bityutskiy 
20061e51764aSArtem Bityutskiy 	err = ubifs_tnc_read_node(c, zbr, ino);
20071e51764aSArtem Bityutskiy 	if (err) {
20081e51764aSArtem Bityutskiy 		ubifs_err("cannot read inode node at LEB %d:%d, error %d",
20091e51764aSArtem Bityutskiy 			  zbr->lnum, zbr->offs, err);
20101e51764aSArtem Bityutskiy 		kfree(ino);
20111e51764aSArtem Bityutskiy 		return ERR_PTR(err);
20121e51764aSArtem Bityutskiy 	}
20131e51764aSArtem Bityutskiy 
20141e51764aSArtem Bityutskiy 	fscki = add_inode(c, fsckd, ino);
20151e51764aSArtem Bityutskiy 	kfree(ino);
20161e51764aSArtem Bityutskiy 	if (IS_ERR(fscki)) {
20171e51764aSArtem Bityutskiy 		ubifs_err("error %ld while adding inode %lu node",
2018e84461adSArtem Bityutskiy 			  PTR_ERR(fscki), (unsigned long)inum);
20191e51764aSArtem Bityutskiy 		return fscki;
20201e51764aSArtem Bityutskiy 	}
20211e51764aSArtem Bityutskiy 
20221e51764aSArtem Bityutskiy 	return fscki;
20231e51764aSArtem Bityutskiy }
20241e51764aSArtem Bityutskiy 
20251e51764aSArtem Bityutskiy /**
20261e51764aSArtem Bityutskiy  * check_leaf - check leaf node.
20271e51764aSArtem Bityutskiy  * @c: UBIFS file-system description object
20281e51764aSArtem Bityutskiy  * @zbr: zbranch of the leaf node to check
20291e51764aSArtem Bityutskiy  * @priv: FS checking information
20301e51764aSArtem Bityutskiy  *
20311e51764aSArtem Bityutskiy  * This is a helper function for 'dbg_check_filesystem()' which is called for
20321e51764aSArtem Bityutskiy  * every single leaf node while walking the indexing tree. It checks that the
20331e51764aSArtem Bityutskiy  * leaf node referred from the indexing tree exists, has correct CRC, and does
20341e51764aSArtem Bityutskiy  * some other basic validation. This function is also responsible for building
20351e51764aSArtem Bityutskiy  * an RB-tree of inodes - it adds all inodes into the RB-tree. It also
20361e51764aSArtem Bityutskiy  * calculates reference count, size, etc for each inode in order to later
20371e51764aSArtem Bityutskiy  * compare them to the information stored inside the inodes and detect possible
20381e51764aSArtem Bityutskiy  * inconsistencies. Returns zero in case of success and a negative error code
20391e51764aSArtem Bityutskiy  * in case of failure.
20401e51764aSArtem Bityutskiy  */
20411e51764aSArtem Bityutskiy static int check_leaf(struct ubifs_info *c, struct ubifs_zbranch *zbr,
20421e51764aSArtem Bityutskiy 		      void *priv)
20431e51764aSArtem Bityutskiy {
20441e51764aSArtem Bityutskiy 	ino_t inum;
20451e51764aSArtem Bityutskiy 	void *node;
20461e51764aSArtem Bityutskiy 	struct ubifs_ch *ch;
20471e51764aSArtem Bityutskiy 	int err, type = key_type(c, &zbr->key);
20481e51764aSArtem Bityutskiy 	struct fsck_inode *fscki;
20491e51764aSArtem Bityutskiy 
20501e51764aSArtem Bityutskiy 	if (zbr->len < UBIFS_CH_SZ) {
20511e51764aSArtem Bityutskiy 		ubifs_err("bad leaf length %d (LEB %d:%d)",
20521e51764aSArtem Bityutskiy 			  zbr->len, zbr->lnum, zbr->offs);
20531e51764aSArtem Bityutskiy 		return -EINVAL;
20541e51764aSArtem Bityutskiy 	}
20551e51764aSArtem Bityutskiy 
20561e51764aSArtem Bityutskiy 	node = kmalloc(zbr->len, GFP_NOFS);
20571e51764aSArtem Bityutskiy 	if (!node)
20581e51764aSArtem Bityutskiy 		return -ENOMEM;
20591e51764aSArtem Bityutskiy 
20601e51764aSArtem Bityutskiy 	err = ubifs_tnc_read_node(c, zbr, node);
20611e51764aSArtem Bityutskiy 	if (err) {
20621e51764aSArtem Bityutskiy 		ubifs_err("cannot read leaf node at LEB %d:%d, error %d",
20631e51764aSArtem Bityutskiy 			  zbr->lnum, zbr->offs, err);
20641e51764aSArtem Bityutskiy 		goto out_free;
20651e51764aSArtem Bityutskiy 	}
20661e51764aSArtem Bityutskiy 
20671e51764aSArtem Bityutskiy 	/* If this is an inode node, add it to RB-tree of inodes */
20681e51764aSArtem Bityutskiy 	if (type == UBIFS_INO_KEY) {
20691e51764aSArtem Bityutskiy 		fscki = add_inode(c, priv, node);
20701e51764aSArtem Bityutskiy 		if (IS_ERR(fscki)) {
20711e51764aSArtem Bityutskiy 			err = PTR_ERR(fscki);
20721e51764aSArtem Bityutskiy 			ubifs_err("error %d while adding inode node", err);
20731e51764aSArtem Bityutskiy 			goto out_dump;
20741e51764aSArtem Bityutskiy 		}
20751e51764aSArtem Bityutskiy 		goto out;
20761e51764aSArtem Bityutskiy 	}
20771e51764aSArtem Bityutskiy 
20781e51764aSArtem Bityutskiy 	if (type != UBIFS_DENT_KEY && type != UBIFS_XENT_KEY &&
20791e51764aSArtem Bityutskiy 	    type != UBIFS_DATA_KEY) {
20801e51764aSArtem Bityutskiy 		ubifs_err("unexpected node type %d at LEB %d:%d",
20811e51764aSArtem Bityutskiy 			  type, zbr->lnum, zbr->offs);
20821e51764aSArtem Bityutskiy 		err = -EINVAL;
20831e51764aSArtem Bityutskiy 		goto out_free;
20841e51764aSArtem Bityutskiy 	}
20851e51764aSArtem Bityutskiy 
20861e51764aSArtem Bityutskiy 	ch = node;
20871e51764aSArtem Bityutskiy 	if (le64_to_cpu(ch->sqnum) > c->max_sqnum) {
20881e51764aSArtem Bityutskiy 		ubifs_err("too high sequence number, max. is %llu",
20891e51764aSArtem Bityutskiy 			  c->max_sqnum);
20901e51764aSArtem Bityutskiy 		err = -EINVAL;
20911e51764aSArtem Bityutskiy 		goto out_dump;
20921e51764aSArtem Bityutskiy 	}
20931e51764aSArtem Bityutskiy 
20941e51764aSArtem Bityutskiy 	if (type == UBIFS_DATA_KEY) {
20951e51764aSArtem Bityutskiy 		long long blk_offs;
20961e51764aSArtem Bityutskiy 		struct ubifs_data_node *dn = node;
20971e51764aSArtem Bityutskiy 
20981e51764aSArtem Bityutskiy 		/*
20991e51764aSArtem Bityutskiy 		 * Search the inode node this data node belongs to and insert
21001e51764aSArtem Bityutskiy 		 * it to the RB-tree of inodes.
21011e51764aSArtem Bityutskiy 		 */
21021e51764aSArtem Bityutskiy 		inum = key_inum_flash(c, &dn->key);
21031e51764aSArtem Bityutskiy 		fscki = read_add_inode(c, priv, inum);
21041e51764aSArtem Bityutskiy 		if (IS_ERR(fscki)) {
21051e51764aSArtem Bityutskiy 			err = PTR_ERR(fscki);
21061e51764aSArtem Bityutskiy 			ubifs_err("error %d while processing data node and "
2107e84461adSArtem Bityutskiy 				  "trying to find inode node %lu",
2108e84461adSArtem Bityutskiy 				  err, (unsigned long)inum);
21091e51764aSArtem Bityutskiy 			goto out_dump;
21101e51764aSArtem Bityutskiy 		}
21111e51764aSArtem Bityutskiy 
21121e51764aSArtem Bityutskiy 		/* Make sure the data node is within inode size */
21131e51764aSArtem Bityutskiy 		blk_offs = key_block_flash(c, &dn->key);
21141e51764aSArtem Bityutskiy 		blk_offs <<= UBIFS_BLOCK_SHIFT;
21151e51764aSArtem Bityutskiy 		blk_offs += le32_to_cpu(dn->size);
21161e51764aSArtem Bityutskiy 		if (blk_offs > fscki->size) {
21171e51764aSArtem Bityutskiy 			ubifs_err("data node at LEB %d:%d is not within inode "
21181e51764aSArtem Bityutskiy 				  "size %lld", zbr->lnum, zbr->offs,
21191e51764aSArtem Bityutskiy 				  fscki->size);
21201e51764aSArtem Bityutskiy 			err = -EINVAL;
21211e51764aSArtem Bityutskiy 			goto out_dump;
21221e51764aSArtem Bityutskiy 		}
21231e51764aSArtem Bityutskiy 	} else {
21241e51764aSArtem Bityutskiy 		int nlen;
21251e51764aSArtem Bityutskiy 		struct ubifs_dent_node *dent = node;
21261e51764aSArtem Bityutskiy 		struct fsck_inode *fscki1;
21271e51764aSArtem Bityutskiy 
21281e51764aSArtem Bityutskiy 		err = ubifs_validate_entry(c, dent);
21291e51764aSArtem Bityutskiy 		if (err)
21301e51764aSArtem Bityutskiy 			goto out_dump;
21311e51764aSArtem Bityutskiy 
21321e51764aSArtem Bityutskiy 		/*
21331e51764aSArtem Bityutskiy 		 * Search the inode node this entry refers to and the parent
21341e51764aSArtem Bityutskiy 		 * inode node and insert them to the RB-tree of inodes.
21351e51764aSArtem Bityutskiy 		 */
21361e51764aSArtem Bityutskiy 		inum = le64_to_cpu(dent->inum);
21371e51764aSArtem Bityutskiy 		fscki = read_add_inode(c, priv, inum);
21381e51764aSArtem Bityutskiy 		if (IS_ERR(fscki)) {
21391e51764aSArtem Bityutskiy 			err = PTR_ERR(fscki);
21401e51764aSArtem Bityutskiy 			ubifs_err("error %d while processing entry node and "
2141e84461adSArtem Bityutskiy 				  "trying to find inode node %lu",
2142e84461adSArtem Bityutskiy 				  err, (unsigned long)inum);
21431e51764aSArtem Bityutskiy 			goto out_dump;
21441e51764aSArtem Bityutskiy 		}
21451e51764aSArtem Bityutskiy 
21461e51764aSArtem Bityutskiy 		/* Count how many direntries or xentries refers this inode */
21471e51764aSArtem Bityutskiy 		fscki->references += 1;
21481e51764aSArtem Bityutskiy 
21491e51764aSArtem Bityutskiy 		inum = key_inum_flash(c, &dent->key);
21501e51764aSArtem Bityutskiy 		fscki1 = read_add_inode(c, priv, inum);
21511e51764aSArtem Bityutskiy 		if (IS_ERR(fscki1)) {
2152b38882f5SRoel Kluin 			err = PTR_ERR(fscki1);
21531e51764aSArtem Bityutskiy 			ubifs_err("error %d while processing entry node and "
21541e51764aSArtem Bityutskiy 				  "trying to find parent inode node %lu",
2155e84461adSArtem Bityutskiy 				  err, (unsigned long)inum);
21561e51764aSArtem Bityutskiy 			goto out_dump;
21571e51764aSArtem Bityutskiy 		}
21581e51764aSArtem Bityutskiy 
21591e51764aSArtem Bityutskiy 		nlen = le16_to_cpu(dent->nlen);
21601e51764aSArtem Bityutskiy 		if (type == UBIFS_XENT_KEY) {
21611e51764aSArtem Bityutskiy 			fscki1->calc_xcnt += 1;
21621e51764aSArtem Bityutskiy 			fscki1->calc_xsz += CALC_DENT_SIZE(nlen);
21631e51764aSArtem Bityutskiy 			fscki1->calc_xsz += CALC_XATTR_BYTES(fscki->size);
21641e51764aSArtem Bityutskiy 			fscki1->calc_xnms += nlen;
21651e51764aSArtem Bityutskiy 		} else {
21661e51764aSArtem Bityutskiy 			fscki1->calc_sz += CALC_DENT_SIZE(nlen);
21671e51764aSArtem Bityutskiy 			if (dent->type == UBIFS_ITYPE_DIR)
21681e51764aSArtem Bityutskiy 				fscki1->calc_cnt += 1;
21691e51764aSArtem Bityutskiy 		}
21701e51764aSArtem Bityutskiy 	}
21711e51764aSArtem Bityutskiy 
21721e51764aSArtem Bityutskiy out:
21731e51764aSArtem Bityutskiy 	kfree(node);
21741e51764aSArtem Bityutskiy 	return 0;
21751e51764aSArtem Bityutskiy 
21761e51764aSArtem Bityutskiy out_dump:
21771e51764aSArtem Bityutskiy 	ubifs_msg("dump of node at LEB %d:%d", zbr->lnum, zbr->offs);
21781e51764aSArtem Bityutskiy 	dbg_dump_node(c, node);
21791e51764aSArtem Bityutskiy out_free:
21801e51764aSArtem Bityutskiy 	kfree(node);
21811e51764aSArtem Bityutskiy 	return err;
21821e51764aSArtem Bityutskiy }
21831e51764aSArtem Bityutskiy 
21841e51764aSArtem Bityutskiy /**
21851e51764aSArtem Bityutskiy  * free_inodes - free RB-tree of inodes.
21861e51764aSArtem Bityutskiy  * @fsckd: FS checking information
21871e51764aSArtem Bityutskiy  */
21881e51764aSArtem Bityutskiy static void free_inodes(struct fsck_data *fsckd)
21891e51764aSArtem Bityutskiy {
21901e51764aSArtem Bityutskiy 	struct rb_node *this = fsckd->inodes.rb_node;
21911e51764aSArtem Bityutskiy 	struct fsck_inode *fscki;
21921e51764aSArtem Bityutskiy 
21931e51764aSArtem Bityutskiy 	while (this) {
21941e51764aSArtem Bityutskiy 		if (this->rb_left)
21951e51764aSArtem Bityutskiy 			this = this->rb_left;
21961e51764aSArtem Bityutskiy 		else if (this->rb_right)
21971e51764aSArtem Bityutskiy 			this = this->rb_right;
21981e51764aSArtem Bityutskiy 		else {
21991e51764aSArtem Bityutskiy 			fscki = rb_entry(this, struct fsck_inode, rb);
22001e51764aSArtem Bityutskiy 			this = rb_parent(this);
22011e51764aSArtem Bityutskiy 			if (this) {
22021e51764aSArtem Bityutskiy 				if (this->rb_left == &fscki->rb)
22031e51764aSArtem Bityutskiy 					this->rb_left = NULL;
22041e51764aSArtem Bityutskiy 				else
22051e51764aSArtem Bityutskiy 					this->rb_right = NULL;
22061e51764aSArtem Bityutskiy 			}
22071e51764aSArtem Bityutskiy 			kfree(fscki);
22081e51764aSArtem Bityutskiy 		}
22091e51764aSArtem Bityutskiy 	}
22101e51764aSArtem Bityutskiy }
22111e51764aSArtem Bityutskiy 
22121e51764aSArtem Bityutskiy /**
22131e51764aSArtem Bityutskiy  * check_inodes - checks all inodes.
22141e51764aSArtem Bityutskiy  * @c: UBIFS file-system description object
22151e51764aSArtem Bityutskiy  * @fsckd: FS checking information
22161e51764aSArtem Bityutskiy  *
22171e51764aSArtem Bityutskiy  * This is a helper function for 'dbg_check_filesystem()' which walks the
22181e51764aSArtem Bityutskiy  * RB-tree of inodes after the index scan has been finished, and checks that
22191e51764aSArtem Bityutskiy  * inode nlink, size, etc are correct. Returns zero if inodes are fine,
22201e51764aSArtem Bityutskiy  * %-EINVAL if not, and a negative error code in case of failure.
22211e51764aSArtem Bityutskiy  */
22221e51764aSArtem Bityutskiy static int check_inodes(struct ubifs_info *c, struct fsck_data *fsckd)
22231e51764aSArtem Bityutskiy {
22241e51764aSArtem Bityutskiy 	int n, err;
22251e51764aSArtem Bityutskiy 	union ubifs_key key;
22261e51764aSArtem Bityutskiy 	struct ubifs_znode *znode;
22271e51764aSArtem Bityutskiy 	struct ubifs_zbranch *zbr;
22281e51764aSArtem Bityutskiy 	struct ubifs_ino_node *ino;
22291e51764aSArtem Bityutskiy 	struct fsck_inode *fscki;
22301e51764aSArtem Bityutskiy 	struct rb_node *this = rb_first(&fsckd->inodes);
22311e51764aSArtem Bityutskiy 
22321e51764aSArtem Bityutskiy 	while (this) {
22331e51764aSArtem Bityutskiy 		fscki = rb_entry(this, struct fsck_inode, rb);
22341e51764aSArtem Bityutskiy 		this = rb_next(this);
22351e51764aSArtem Bityutskiy 
22361e51764aSArtem Bityutskiy 		if (S_ISDIR(fscki->mode)) {
22371e51764aSArtem Bityutskiy 			/*
22381e51764aSArtem Bityutskiy 			 * Directories have to have exactly one reference (they
22391e51764aSArtem Bityutskiy 			 * cannot have hardlinks), although root inode is an
22401e51764aSArtem Bityutskiy 			 * exception.
22411e51764aSArtem Bityutskiy 			 */
22421e51764aSArtem Bityutskiy 			if (fscki->inum != UBIFS_ROOT_INO &&
22431e51764aSArtem Bityutskiy 			    fscki->references != 1) {
22441e51764aSArtem Bityutskiy 				ubifs_err("directory inode %lu has %d "
22451e51764aSArtem Bityutskiy 					  "direntries which refer it, but "
2246e84461adSArtem Bityutskiy 					  "should be 1",
2247e84461adSArtem Bityutskiy 					  (unsigned long)fscki->inum,
22481e51764aSArtem Bityutskiy 					  fscki->references);
22491e51764aSArtem Bityutskiy 				goto out_dump;
22501e51764aSArtem Bityutskiy 			}
22511e51764aSArtem Bityutskiy 			if (fscki->inum == UBIFS_ROOT_INO &&
22521e51764aSArtem Bityutskiy 			    fscki->references != 0) {
22531e51764aSArtem Bityutskiy 				ubifs_err("root inode %lu has non-zero (%d) "
22541e51764aSArtem Bityutskiy 					  "direntries which refer it",
2255e84461adSArtem Bityutskiy 					  (unsigned long)fscki->inum,
2256e84461adSArtem Bityutskiy 					  fscki->references);
22571e51764aSArtem Bityutskiy 				goto out_dump;
22581e51764aSArtem Bityutskiy 			}
22591e51764aSArtem Bityutskiy 			if (fscki->calc_sz != fscki->size) {
22601e51764aSArtem Bityutskiy 				ubifs_err("directory inode %lu size is %lld, "
22611e51764aSArtem Bityutskiy 					  "but calculated size is %lld",
2262e84461adSArtem Bityutskiy 					  (unsigned long)fscki->inum,
2263e84461adSArtem Bityutskiy 					  fscki->size, fscki->calc_sz);
22641e51764aSArtem Bityutskiy 				goto out_dump;
22651e51764aSArtem Bityutskiy 			}
22661e51764aSArtem Bityutskiy 			if (fscki->calc_cnt != fscki->nlink) {
22671e51764aSArtem Bityutskiy 				ubifs_err("directory inode %lu nlink is %d, "
22681e51764aSArtem Bityutskiy 					  "but calculated nlink is %d",
2269e84461adSArtem Bityutskiy 					  (unsigned long)fscki->inum,
2270e84461adSArtem Bityutskiy 					  fscki->nlink, fscki->calc_cnt);
22711e51764aSArtem Bityutskiy 				goto out_dump;
22721e51764aSArtem Bityutskiy 			}
22731e51764aSArtem Bityutskiy 		} else {
22741e51764aSArtem Bityutskiy 			if (fscki->references != fscki->nlink) {
22751e51764aSArtem Bityutskiy 				ubifs_err("inode %lu nlink is %d, but "
2276e84461adSArtem Bityutskiy 					  "calculated nlink is %d",
2277e84461adSArtem Bityutskiy 					  (unsigned long)fscki->inum,
22781e51764aSArtem Bityutskiy 					  fscki->nlink, fscki->references);
22791e51764aSArtem Bityutskiy 				goto out_dump;
22801e51764aSArtem Bityutskiy 			}
22811e51764aSArtem Bityutskiy 		}
22821e51764aSArtem Bityutskiy 		if (fscki->xattr_sz != fscki->calc_xsz) {
22831e51764aSArtem Bityutskiy 			ubifs_err("inode %lu has xattr size %u, but "
22841e51764aSArtem Bityutskiy 				  "calculated size is %lld",
2285e84461adSArtem Bityutskiy 				  (unsigned long)fscki->inum, fscki->xattr_sz,
22861e51764aSArtem Bityutskiy 				  fscki->calc_xsz);
22871e51764aSArtem Bityutskiy 			goto out_dump;
22881e51764aSArtem Bityutskiy 		}
22891e51764aSArtem Bityutskiy 		if (fscki->xattr_cnt != fscki->calc_xcnt) {
22901e51764aSArtem Bityutskiy 			ubifs_err("inode %lu has %u xattrs, but "
2291e84461adSArtem Bityutskiy 				  "calculated count is %lld",
2292e84461adSArtem Bityutskiy 				  (unsigned long)fscki->inum,
22931e51764aSArtem Bityutskiy 				  fscki->xattr_cnt, fscki->calc_xcnt);
22941e51764aSArtem Bityutskiy 			goto out_dump;
22951e51764aSArtem Bityutskiy 		}
22961e51764aSArtem Bityutskiy 		if (fscki->xattr_nms != fscki->calc_xnms) {
22971e51764aSArtem Bityutskiy 			ubifs_err("inode %lu has xattr names' size %u, but "
22981e51764aSArtem Bityutskiy 				  "calculated names' size is %lld",
2299e84461adSArtem Bityutskiy 				  (unsigned long)fscki->inum, fscki->xattr_nms,
23001e51764aSArtem Bityutskiy 				  fscki->calc_xnms);
23011e51764aSArtem Bityutskiy 			goto out_dump;
23021e51764aSArtem Bityutskiy 		}
23031e51764aSArtem Bityutskiy 	}
23041e51764aSArtem Bityutskiy 
23051e51764aSArtem Bityutskiy 	return 0;
23061e51764aSArtem Bityutskiy 
23071e51764aSArtem Bityutskiy out_dump:
23081e51764aSArtem Bityutskiy 	/* Read the bad inode and dump it */
23091e51764aSArtem Bityutskiy 	ino_key_init(c, &key, fscki->inum);
23101e51764aSArtem Bityutskiy 	err = ubifs_lookup_level0(c, &key, &znode, &n);
23111e51764aSArtem Bityutskiy 	if (!err) {
2312e84461adSArtem Bityutskiy 		ubifs_err("inode %lu not found in index",
2313e84461adSArtem Bityutskiy 			  (unsigned long)fscki->inum);
23141e51764aSArtem Bityutskiy 		return -ENOENT;
23151e51764aSArtem Bityutskiy 	} else if (err < 0) {
23161e51764aSArtem Bityutskiy 		ubifs_err("error %d while looking up inode %lu",
2317e84461adSArtem Bityutskiy 			  err, (unsigned long)fscki->inum);
23181e51764aSArtem Bityutskiy 		return err;
23191e51764aSArtem Bityutskiy 	}
23201e51764aSArtem Bityutskiy 
23211e51764aSArtem Bityutskiy 	zbr = &znode->zbranch[n];
23221e51764aSArtem Bityutskiy 	ino = kmalloc(zbr->len, GFP_NOFS);
23231e51764aSArtem Bityutskiy 	if (!ino)
23241e51764aSArtem Bityutskiy 		return -ENOMEM;
23251e51764aSArtem Bityutskiy 
23261e51764aSArtem Bityutskiy 	err = ubifs_tnc_read_node(c, zbr, ino);
23271e51764aSArtem Bityutskiy 	if (err) {
23281e51764aSArtem Bityutskiy 		ubifs_err("cannot read inode node at LEB %d:%d, error %d",
23291e51764aSArtem Bityutskiy 			  zbr->lnum, zbr->offs, err);
23301e51764aSArtem Bityutskiy 		kfree(ino);
23311e51764aSArtem Bityutskiy 		return err;
23321e51764aSArtem Bityutskiy 	}
23331e51764aSArtem Bityutskiy 
23341e51764aSArtem Bityutskiy 	ubifs_msg("dump of the inode %lu sitting in LEB %d:%d",
2335e84461adSArtem Bityutskiy 		  (unsigned long)fscki->inum, zbr->lnum, zbr->offs);
23361e51764aSArtem Bityutskiy 	dbg_dump_node(c, ino);
23371e51764aSArtem Bityutskiy 	kfree(ino);
23381e51764aSArtem Bityutskiy 	return -EINVAL;
23391e51764aSArtem Bityutskiy }
23401e51764aSArtem Bityutskiy 
23411e51764aSArtem Bityutskiy /**
23421e51764aSArtem Bityutskiy  * dbg_check_filesystem - check the file-system.
23431e51764aSArtem Bityutskiy  * @c: UBIFS file-system description object
23441e51764aSArtem Bityutskiy  *
23451e51764aSArtem Bityutskiy  * This function checks the file system, namely:
23461e51764aSArtem Bityutskiy  * o makes sure that all leaf nodes exist and their CRCs are correct;
23471e51764aSArtem Bityutskiy  * o makes sure inode nlink, size, xattr size/count are correct (for all
23481e51764aSArtem Bityutskiy  *   inodes).
23491e51764aSArtem Bityutskiy  *
23501e51764aSArtem Bityutskiy  * The function reads whole indexing tree and all nodes, so it is pretty
23511e51764aSArtem Bityutskiy  * heavy-weight. Returns zero if the file-system is consistent, %-EINVAL if
23521e51764aSArtem Bityutskiy  * not, and a negative error code in case of failure.
23531e51764aSArtem Bityutskiy  */
23541e51764aSArtem Bityutskiy int dbg_check_filesystem(struct ubifs_info *c)
23551e51764aSArtem Bityutskiy {
23561e51764aSArtem Bityutskiy 	int err;
23571e51764aSArtem Bityutskiy 	struct fsck_data fsckd;
23581e51764aSArtem Bityutskiy 
23592b1844a8SArtem Bityutskiy 	if (!dbg_is_chk_fs(c))
23601e51764aSArtem Bityutskiy 		return 0;
23611e51764aSArtem Bityutskiy 
23621e51764aSArtem Bityutskiy 	fsckd.inodes = RB_ROOT;
23631e51764aSArtem Bityutskiy 	err = dbg_walk_index(c, check_leaf, NULL, &fsckd);
23641e51764aSArtem Bityutskiy 	if (err)
23651e51764aSArtem Bityutskiy 		goto out_free;
23661e51764aSArtem Bityutskiy 
23671e51764aSArtem Bityutskiy 	err = check_inodes(c, &fsckd);
23681e51764aSArtem Bityutskiy 	if (err)
23691e51764aSArtem Bityutskiy 		goto out_free;
23701e51764aSArtem Bityutskiy 
23711e51764aSArtem Bityutskiy 	free_inodes(&fsckd);
23721e51764aSArtem Bityutskiy 	return 0;
23731e51764aSArtem Bityutskiy 
23741e51764aSArtem Bityutskiy out_free:
23751e51764aSArtem Bityutskiy 	ubifs_err("file-system check failed with error %d", err);
23761e51764aSArtem Bityutskiy 	dump_stack();
23771e51764aSArtem Bityutskiy 	free_inodes(&fsckd);
23781e51764aSArtem Bityutskiy 	return err;
23791e51764aSArtem Bityutskiy }
23801e51764aSArtem Bityutskiy 
23813bb66b47SArtem Bityutskiy /**
23823bb66b47SArtem Bityutskiy  * dbg_check_data_nodes_order - check that list of data nodes is sorted.
23833bb66b47SArtem Bityutskiy  * @c: UBIFS file-system description object
23843bb66b47SArtem Bityutskiy  * @head: the list of nodes ('struct ubifs_scan_node' objects)
23853bb66b47SArtem Bityutskiy  *
23863bb66b47SArtem Bityutskiy  * This function returns zero if the list of data nodes is sorted correctly,
23873bb66b47SArtem Bityutskiy  * and %-EINVAL if not.
23883bb66b47SArtem Bityutskiy  */
23893bb66b47SArtem Bityutskiy int dbg_check_data_nodes_order(struct ubifs_info *c, struct list_head *head)
23903bb66b47SArtem Bityutskiy {
23913bb66b47SArtem Bityutskiy 	struct list_head *cur;
23923bb66b47SArtem Bityutskiy 	struct ubifs_scan_node *sa, *sb;
23933bb66b47SArtem Bityutskiy 
23942b1844a8SArtem Bityutskiy 	if (!dbg_is_chk_gen(c))
23953bb66b47SArtem Bityutskiy 		return 0;
23963bb66b47SArtem Bityutskiy 
23973bb66b47SArtem Bityutskiy 	for (cur = head->next; cur->next != head; cur = cur->next) {
23983bb66b47SArtem Bityutskiy 		ino_t inuma, inumb;
23993bb66b47SArtem Bityutskiy 		uint32_t blka, blkb;
24003bb66b47SArtem Bityutskiy 
24013bb66b47SArtem Bityutskiy 		cond_resched();
24023bb66b47SArtem Bityutskiy 		sa = container_of(cur, struct ubifs_scan_node, list);
24033bb66b47SArtem Bityutskiy 		sb = container_of(cur->next, struct ubifs_scan_node, list);
24043bb66b47SArtem Bityutskiy 
24053bb66b47SArtem Bityutskiy 		if (sa->type != UBIFS_DATA_NODE) {
24063bb66b47SArtem Bityutskiy 			ubifs_err("bad node type %d", sa->type);
24073bb66b47SArtem Bityutskiy 			dbg_dump_node(c, sa->node);
24083bb66b47SArtem Bityutskiy 			return -EINVAL;
24093bb66b47SArtem Bityutskiy 		}
24103bb66b47SArtem Bityutskiy 		if (sb->type != UBIFS_DATA_NODE) {
24113bb66b47SArtem Bityutskiy 			ubifs_err("bad node type %d", sb->type);
24123bb66b47SArtem Bityutskiy 			dbg_dump_node(c, sb->node);
24133bb66b47SArtem Bityutskiy 			return -EINVAL;
24143bb66b47SArtem Bityutskiy 		}
24153bb66b47SArtem Bityutskiy 
24163bb66b47SArtem Bityutskiy 		inuma = key_inum(c, &sa->key);
24173bb66b47SArtem Bityutskiy 		inumb = key_inum(c, &sb->key);
24183bb66b47SArtem Bityutskiy 
24193bb66b47SArtem Bityutskiy 		if (inuma < inumb)
24203bb66b47SArtem Bityutskiy 			continue;
24213bb66b47SArtem Bityutskiy 		if (inuma > inumb) {
24223bb66b47SArtem Bityutskiy 			ubifs_err("larger inum %lu goes before inum %lu",
24233bb66b47SArtem Bityutskiy 				  (unsigned long)inuma, (unsigned long)inumb);
24243bb66b47SArtem Bityutskiy 			goto error_dump;
24253bb66b47SArtem Bityutskiy 		}
24263bb66b47SArtem Bityutskiy 
24273bb66b47SArtem Bityutskiy 		blka = key_block(c, &sa->key);
24283bb66b47SArtem Bityutskiy 		blkb = key_block(c, &sb->key);
24293bb66b47SArtem Bityutskiy 
24303bb66b47SArtem Bityutskiy 		if (blka > blkb) {
24313bb66b47SArtem Bityutskiy 			ubifs_err("larger block %u goes before %u", blka, blkb);
24323bb66b47SArtem Bityutskiy 			goto error_dump;
24333bb66b47SArtem Bityutskiy 		}
24343bb66b47SArtem Bityutskiy 		if (blka == blkb) {
24353bb66b47SArtem Bityutskiy 			ubifs_err("two data nodes for the same block");
24363bb66b47SArtem Bityutskiy 			goto error_dump;
24373bb66b47SArtem Bityutskiy 		}
24383bb66b47SArtem Bityutskiy 	}
24393bb66b47SArtem Bityutskiy 
24403bb66b47SArtem Bityutskiy 	return 0;
24413bb66b47SArtem Bityutskiy 
24423bb66b47SArtem Bityutskiy error_dump:
24433bb66b47SArtem Bityutskiy 	dbg_dump_node(c, sa->node);
24443bb66b47SArtem Bityutskiy 	dbg_dump_node(c, sb->node);
24453bb66b47SArtem Bityutskiy 	return -EINVAL;
24463bb66b47SArtem Bityutskiy }
24473bb66b47SArtem Bityutskiy 
24483bb66b47SArtem Bityutskiy /**
24493bb66b47SArtem Bityutskiy  * dbg_check_nondata_nodes_order - check that list of data nodes is sorted.
24503bb66b47SArtem Bityutskiy  * @c: UBIFS file-system description object
24513bb66b47SArtem Bityutskiy  * @head: the list of nodes ('struct ubifs_scan_node' objects)
24523bb66b47SArtem Bityutskiy  *
24533bb66b47SArtem Bityutskiy  * This function returns zero if the list of non-data nodes is sorted correctly,
24543bb66b47SArtem Bityutskiy  * and %-EINVAL if not.
24553bb66b47SArtem Bityutskiy  */
24563bb66b47SArtem Bityutskiy int dbg_check_nondata_nodes_order(struct ubifs_info *c, struct list_head *head)
24573bb66b47SArtem Bityutskiy {
24583bb66b47SArtem Bityutskiy 	struct list_head *cur;
24593bb66b47SArtem Bityutskiy 	struct ubifs_scan_node *sa, *sb;
24603bb66b47SArtem Bityutskiy 
24612b1844a8SArtem Bityutskiy 	if (!dbg_is_chk_gen(c))
24623bb66b47SArtem Bityutskiy 		return 0;
24633bb66b47SArtem Bityutskiy 
24643bb66b47SArtem Bityutskiy 	for (cur = head->next; cur->next != head; cur = cur->next) {
24653bb66b47SArtem Bityutskiy 		ino_t inuma, inumb;
24663bb66b47SArtem Bityutskiy 		uint32_t hasha, hashb;
24673bb66b47SArtem Bityutskiy 
24683bb66b47SArtem Bityutskiy 		cond_resched();
24693bb66b47SArtem Bityutskiy 		sa = container_of(cur, struct ubifs_scan_node, list);
24703bb66b47SArtem Bityutskiy 		sb = container_of(cur->next, struct ubifs_scan_node, list);
24713bb66b47SArtem Bityutskiy 
24723bb66b47SArtem Bityutskiy 		if (sa->type != UBIFS_INO_NODE && sa->type != UBIFS_DENT_NODE &&
24733bb66b47SArtem Bityutskiy 		    sa->type != UBIFS_XENT_NODE) {
24743bb66b47SArtem Bityutskiy 			ubifs_err("bad node type %d", sa->type);
24753bb66b47SArtem Bityutskiy 			dbg_dump_node(c, sa->node);
24763bb66b47SArtem Bityutskiy 			return -EINVAL;
24773bb66b47SArtem Bityutskiy 		}
24783bb66b47SArtem Bityutskiy 		if (sa->type != UBIFS_INO_NODE && sa->type != UBIFS_DENT_NODE &&
24793bb66b47SArtem Bityutskiy 		    sa->type != UBIFS_XENT_NODE) {
24803bb66b47SArtem Bityutskiy 			ubifs_err("bad node type %d", sb->type);
24813bb66b47SArtem Bityutskiy 			dbg_dump_node(c, sb->node);
24823bb66b47SArtem Bityutskiy 			return -EINVAL;
24833bb66b47SArtem Bityutskiy 		}
24843bb66b47SArtem Bityutskiy 
24853bb66b47SArtem Bityutskiy 		if (sa->type != UBIFS_INO_NODE && sb->type == UBIFS_INO_NODE) {
24863bb66b47SArtem Bityutskiy 			ubifs_err("non-inode node goes before inode node");
24873bb66b47SArtem Bityutskiy 			goto error_dump;
24883bb66b47SArtem Bityutskiy 		}
24893bb66b47SArtem Bityutskiy 
24903bb66b47SArtem Bityutskiy 		if (sa->type == UBIFS_INO_NODE && sb->type != UBIFS_INO_NODE)
24913bb66b47SArtem Bityutskiy 			continue;
24923bb66b47SArtem Bityutskiy 
24933bb66b47SArtem Bityutskiy 		if (sa->type == UBIFS_INO_NODE && sb->type == UBIFS_INO_NODE) {
24943bb66b47SArtem Bityutskiy 			/* Inode nodes are sorted in descending size order */
24953bb66b47SArtem Bityutskiy 			if (sa->len < sb->len) {
24963bb66b47SArtem Bityutskiy 				ubifs_err("smaller inode node goes first");
24973bb66b47SArtem Bityutskiy 				goto error_dump;
24983bb66b47SArtem Bityutskiy 			}
24993bb66b47SArtem Bityutskiy 			continue;
25003bb66b47SArtem Bityutskiy 		}
25013bb66b47SArtem Bityutskiy 
25023bb66b47SArtem Bityutskiy 		/*
25033bb66b47SArtem Bityutskiy 		 * This is either a dentry or xentry, which should be sorted in
25043bb66b47SArtem Bityutskiy 		 * ascending (parent ino, hash) order.
25053bb66b47SArtem Bityutskiy 		 */
25063bb66b47SArtem Bityutskiy 		inuma = key_inum(c, &sa->key);
25073bb66b47SArtem Bityutskiy 		inumb = key_inum(c, &sb->key);
25083bb66b47SArtem Bityutskiy 
25093bb66b47SArtem Bityutskiy 		if (inuma < inumb)
25103bb66b47SArtem Bityutskiy 			continue;
25113bb66b47SArtem Bityutskiy 		if (inuma > inumb) {
25123bb66b47SArtem Bityutskiy 			ubifs_err("larger inum %lu goes before inum %lu",
25133bb66b47SArtem Bityutskiy 				  (unsigned long)inuma, (unsigned long)inumb);
25143bb66b47SArtem Bityutskiy 			goto error_dump;
25153bb66b47SArtem Bityutskiy 		}
25163bb66b47SArtem Bityutskiy 
25173bb66b47SArtem Bityutskiy 		hasha = key_block(c, &sa->key);
25183bb66b47SArtem Bityutskiy 		hashb = key_block(c, &sb->key);
25193bb66b47SArtem Bityutskiy 
25203bb66b47SArtem Bityutskiy 		if (hasha > hashb) {
2521c4361570SArtem Bityutskiy 			ubifs_err("larger hash %u goes before %u",
2522c4361570SArtem Bityutskiy 				  hasha, hashb);
25233bb66b47SArtem Bityutskiy 			goto error_dump;
25243bb66b47SArtem Bityutskiy 		}
25253bb66b47SArtem Bityutskiy 	}
25263bb66b47SArtem Bityutskiy 
25273bb66b47SArtem Bityutskiy 	return 0;
25283bb66b47SArtem Bityutskiy 
25293bb66b47SArtem Bityutskiy error_dump:
25303bb66b47SArtem Bityutskiy 	ubifs_msg("dumping first node");
25313bb66b47SArtem Bityutskiy 	dbg_dump_node(c, sa->node);
25323bb66b47SArtem Bityutskiy 	ubifs_msg("dumping second node");
25333bb66b47SArtem Bityutskiy 	dbg_dump_node(c, sb->node);
25343bb66b47SArtem Bityutskiy 	return -EINVAL;
25353bb66b47SArtem Bityutskiy 	return 0;
25363bb66b47SArtem Bityutskiy }
25373bb66b47SArtem Bityutskiy 
25381e51764aSArtem Bityutskiy /* Failure mode for recovery testing */
25391e51764aSArtem Bityutskiy 
25401e51764aSArtem Bityutskiy #define chance(n, d) (simple_rand() <= (n) * 32768LL / (d))
25411e51764aSArtem Bityutskiy 
25421e51764aSArtem Bityutskiy static unsigned int next;
25431e51764aSArtem Bityutskiy static int simple_rand(void)
25441e51764aSArtem Bityutskiy {
25451e51764aSArtem Bityutskiy 	if (next == 0)
25461e51764aSArtem Bityutskiy 		next = current->pid;
25471e51764aSArtem Bityutskiy 	next = next * 1103515245 + 12345;
25481e51764aSArtem Bityutskiy 	return (next >> 16) & 32767;
25491e51764aSArtem Bityutskiy }
25501e51764aSArtem Bityutskiy 
2551*f57cb188SArtem Bityutskiy static int do_fail(struct ubifs_info *c, int lnum, int write)
25521e51764aSArtem Bityutskiy {
2553*f57cb188SArtem Bityutskiy 	struct ubifs_debug_info *d = c->dbg;
25541e51764aSArtem Bityutskiy 
2555*f57cb188SArtem Bityutskiy 	ubifs_assert(dbg_is_tst_rcvry(c));
25561e51764aSArtem Bityutskiy 
255717c2f9f8SArtem Bityutskiy 	if (d->failure_mode)
25581e51764aSArtem Bityutskiy 		return 1;
2559*f57cb188SArtem Bityutskiy 
256017c2f9f8SArtem Bityutskiy 	if (!d->fail_cnt) {
25611e51764aSArtem Bityutskiy 		/* First call - decide delay to failure */
25621e51764aSArtem Bityutskiy 		if (chance(1, 2)) {
25631e51764aSArtem Bityutskiy 			unsigned int delay = 1 << (simple_rand() >> 11);
25641e51764aSArtem Bityutskiy 
25651e51764aSArtem Bityutskiy 			if (chance(1, 2)) {
256617c2f9f8SArtem Bityutskiy 				d->fail_delay = 1;
256717c2f9f8SArtem Bityutskiy 				d->fail_timeout = jiffies +
25681e51764aSArtem Bityutskiy 						  msecs_to_jiffies(delay);
256924a4f800SArtem Bityutskiy 				ubifs_warn("failing after %ums", delay);
25701e51764aSArtem Bityutskiy 			} else {
257117c2f9f8SArtem Bityutskiy 				d->fail_delay = 2;
257217c2f9f8SArtem Bityutskiy 				d->fail_cnt_max = delay;
257324a4f800SArtem Bityutskiy 				ubifs_warn("failing after %u calls", delay);
25741e51764aSArtem Bityutskiy 			}
25751e51764aSArtem Bityutskiy 		}
257617c2f9f8SArtem Bityutskiy 		d->fail_cnt += 1;
25771e51764aSArtem Bityutskiy 	}
25781e51764aSArtem Bityutskiy 	/* Determine if failure delay has expired */
257917c2f9f8SArtem Bityutskiy 	if (d->fail_delay == 1) {
258017c2f9f8SArtem Bityutskiy 		if (time_before(jiffies, d->fail_timeout))
25811e51764aSArtem Bityutskiy 			return 0;
258217c2f9f8SArtem Bityutskiy 	} else if (d->fail_delay == 2)
258317c2f9f8SArtem Bityutskiy 		if (d->fail_cnt++ < d->fail_cnt_max)
25841e51764aSArtem Bityutskiy 			return 0;
25851e51764aSArtem Bityutskiy 	if (lnum == UBIFS_SB_LNUM) {
25861e51764aSArtem Bityutskiy 		if (write) {
25871e51764aSArtem Bityutskiy 			if (chance(1, 2))
25881e51764aSArtem Bityutskiy 				return 0;
25891e51764aSArtem Bityutskiy 		} else if (chance(19, 20))
25901e51764aSArtem Bityutskiy 			return 0;
259124a4f800SArtem Bityutskiy 		ubifs_warn("failing in super block LEB %d", lnum);
25921e51764aSArtem Bityutskiy 	} else if (lnum == UBIFS_MST_LNUM || lnum == UBIFS_MST_LNUM + 1) {
25931e51764aSArtem Bityutskiy 		if (chance(19, 20))
25941e51764aSArtem Bityutskiy 			return 0;
259524a4f800SArtem Bityutskiy 		ubifs_warn("failing in master LEB %d", lnum);
25961e51764aSArtem Bityutskiy 	} else if (lnum >= UBIFS_LOG_LNUM && lnum <= c->log_last) {
25971e51764aSArtem Bityutskiy 		if (write) {
25981e51764aSArtem Bityutskiy 			if (chance(99, 100))
25991e51764aSArtem Bityutskiy 				return 0;
26001e51764aSArtem Bityutskiy 		} else if (chance(399, 400))
26011e51764aSArtem Bityutskiy 			return 0;
260224a4f800SArtem Bityutskiy 		ubifs_warn("failing in log LEB %d", lnum);
26031e51764aSArtem Bityutskiy 	} else if (lnum >= c->lpt_first && lnum <= c->lpt_last) {
26041e51764aSArtem Bityutskiy 		if (write) {
26051e51764aSArtem Bityutskiy 			if (chance(7, 8))
26061e51764aSArtem Bityutskiy 				return 0;
26071e51764aSArtem Bityutskiy 		} else if (chance(19, 20))
26081e51764aSArtem Bityutskiy 			return 0;
260924a4f800SArtem Bityutskiy 		ubifs_warn("failing in LPT LEB %d", lnum);
26101e51764aSArtem Bityutskiy 	} else if (lnum >= c->orph_first && lnum <= c->orph_last) {
26111e51764aSArtem Bityutskiy 		if (write) {
26121e51764aSArtem Bityutskiy 			if (chance(1, 2))
26131e51764aSArtem Bityutskiy 				return 0;
26141e51764aSArtem Bityutskiy 		} else if (chance(9, 10))
26151e51764aSArtem Bityutskiy 			return 0;
261624a4f800SArtem Bityutskiy 		ubifs_warn("failing in orphan LEB %d", lnum);
26171e51764aSArtem Bityutskiy 	} else if (lnum == c->ihead_lnum) {
26181e51764aSArtem Bityutskiy 		if (chance(99, 100))
26191e51764aSArtem Bityutskiy 			return 0;
262024a4f800SArtem Bityutskiy 		ubifs_warn("failing in index head LEB %d", lnum);
26211e51764aSArtem Bityutskiy 	} else if (c->jheads && lnum == c->jheads[GCHD].wbuf.lnum) {
26221e51764aSArtem Bityutskiy 		if (chance(9, 10))
26231e51764aSArtem Bityutskiy 			return 0;
262424a4f800SArtem Bityutskiy 		ubifs_warn("failing in GC head LEB %d", lnum);
26251e51764aSArtem Bityutskiy 	} else if (write && !RB_EMPTY_ROOT(&c->buds) &&
26261e51764aSArtem Bityutskiy 		   !ubifs_search_bud(c, lnum)) {
26271e51764aSArtem Bityutskiy 		if (chance(19, 20))
26281e51764aSArtem Bityutskiy 			return 0;
262924a4f800SArtem Bityutskiy 		ubifs_warn("failing in non-bud LEB %d", lnum);
26301e51764aSArtem Bityutskiy 	} else if (c->cmt_state == COMMIT_RUNNING_BACKGROUND ||
26311e51764aSArtem Bityutskiy 		   c->cmt_state == COMMIT_RUNNING_REQUIRED) {
26321e51764aSArtem Bityutskiy 		if (chance(999, 1000))
26331e51764aSArtem Bityutskiy 			return 0;
263424a4f800SArtem Bityutskiy 		ubifs_warn("failing in bud LEB %d commit running", lnum);
26351e51764aSArtem Bityutskiy 	} else {
26361e51764aSArtem Bityutskiy 		if (chance(9999, 10000))
26371e51764aSArtem Bityutskiy 			return 0;
263824a4f800SArtem Bityutskiy 		ubifs_warn("failing in bud LEB %d commit not running", lnum);
26391e51764aSArtem Bityutskiy 	}
264024a4f800SArtem Bityutskiy 
264117c2f9f8SArtem Bityutskiy 	d->failure_mode = 1;
26421e51764aSArtem Bityutskiy 	dump_stack();
26431e51764aSArtem Bityutskiy 	return 1;
26441e51764aSArtem Bityutskiy }
26451e51764aSArtem Bityutskiy 
26461e51764aSArtem Bityutskiy static void cut_data(const void *buf, int len)
26471e51764aSArtem Bityutskiy {
26481e51764aSArtem Bityutskiy 	int flen, i;
26491e51764aSArtem Bityutskiy 	unsigned char *p = (void *)buf;
26501e51764aSArtem Bityutskiy 
26511e51764aSArtem Bityutskiy 	flen = (len * (long long)simple_rand()) >> 15;
26521e51764aSArtem Bityutskiy 	for (i = flen; i < len; i++)
26531e51764aSArtem Bityutskiy 		p[i] = 0xff;
26541e51764aSArtem Bityutskiy }
26551e51764aSArtem Bityutskiy 
2656*f57cb188SArtem Bityutskiy int dbg_leb_write(struct ubifs_info *c, int lnum, const void *buf,
2657891a54a1SArtem Bityutskiy 		  int offs, int len, int dtype)
26581e51764aSArtem Bityutskiy {
265916dfd804SAdrian Hunter 	int err, failing;
26601e51764aSArtem Bityutskiy 
2661*f57cb188SArtem Bityutskiy 	if (c->dbg->failure_mode)
26621a29af8bSArtem Bityutskiy 		return -EROFS;
2663*f57cb188SArtem Bityutskiy 	failing = do_fail(c, lnum, 1);
266416dfd804SAdrian Hunter 	if (failing)
26651e51764aSArtem Bityutskiy 		cut_data(buf, len);
2666*f57cb188SArtem Bityutskiy 	err = ubi_leb_write(c->ubi, lnum, buf, offs, len, dtype);
26671e51764aSArtem Bityutskiy 	if (err)
26681e51764aSArtem Bityutskiy 		return err;
266916dfd804SAdrian Hunter 	if (failing)
26701a29af8bSArtem Bityutskiy 		return -EROFS;
26711e51764aSArtem Bityutskiy 	return 0;
26721e51764aSArtem Bityutskiy }
26731e51764aSArtem Bityutskiy 
2674*f57cb188SArtem Bityutskiy int dbg_leb_change(struct ubifs_info *c, int lnum, const void *buf,
26751e51764aSArtem Bityutskiy 		   int len, int dtype)
26761e51764aSArtem Bityutskiy {
26771e51764aSArtem Bityutskiy 	int err;
26781e51764aSArtem Bityutskiy 
2679*f57cb188SArtem Bityutskiy 	if (do_fail(c, lnum, 1))
26801a29af8bSArtem Bityutskiy 		return -EROFS;
2681*f57cb188SArtem Bityutskiy 	err = ubi_leb_change(c->ubi, lnum, buf, len, dtype);
26821e51764aSArtem Bityutskiy 	if (err)
26831e51764aSArtem Bityutskiy 		return err;
2684*f57cb188SArtem Bityutskiy 	if (do_fail(c, lnum, 1))
26851a29af8bSArtem Bityutskiy 		return -EROFS;
26861e51764aSArtem Bityutskiy 	return 0;
26871e51764aSArtem Bityutskiy }
26881e51764aSArtem Bityutskiy 
2689*f57cb188SArtem Bityutskiy int dbg_leb_unmap(struct ubifs_info *c, int lnum)
26901e51764aSArtem Bityutskiy {
26911e51764aSArtem Bityutskiy 	int err;
26921e51764aSArtem Bityutskiy 
2693*f57cb188SArtem Bityutskiy 	if (do_fail(c, lnum, 0))
26941a29af8bSArtem Bityutskiy 		return -EROFS;
2695*f57cb188SArtem Bityutskiy 	err = ubi_leb_unmap(c->ubi, lnum);
26961e51764aSArtem Bityutskiy 	if (err)
26971e51764aSArtem Bityutskiy 		return err;
2698*f57cb188SArtem Bityutskiy 	if (do_fail(c, lnum, 0))
26991a29af8bSArtem Bityutskiy 		return -EROFS;
27001e51764aSArtem Bityutskiy 	return 0;
27011e51764aSArtem Bityutskiy }
27021e51764aSArtem Bityutskiy 
2703*f57cb188SArtem Bityutskiy int dbg_leb_map(struct ubifs_info *c, int lnum, int dtype)
27041e51764aSArtem Bityutskiy {
27051e51764aSArtem Bityutskiy 	int err;
27061e51764aSArtem Bityutskiy 
2707*f57cb188SArtem Bityutskiy 	if (do_fail(c, lnum, 0))
27081a29af8bSArtem Bityutskiy 		return -EROFS;
2709*f57cb188SArtem Bityutskiy 	err = ubi_leb_map(c->ubi, lnum, dtype);
27101e51764aSArtem Bityutskiy 	if (err)
27111e51764aSArtem Bityutskiy 		return err;
2712*f57cb188SArtem Bityutskiy 	if (do_fail(c, lnum, 0))
27131a29af8bSArtem Bityutskiy 		return -EROFS;
27141e51764aSArtem Bityutskiy 	return 0;
27151e51764aSArtem Bityutskiy }
27161e51764aSArtem Bityutskiy 
2717552ff317SArtem Bityutskiy /*
2718552ff317SArtem Bityutskiy  * Root directory for UBIFS stuff in debugfs. Contains sub-directories which
2719552ff317SArtem Bityutskiy  * contain the stuff specific to particular file-system mounts.
2720552ff317SArtem Bityutskiy  */
272184abf972SArtem Bityutskiy static struct dentry *dfs_rootdir;
2722552ff317SArtem Bityutskiy 
27237dae997dSArtem Bityutskiy static int dfs_file_open(struct inode *inode, struct file *file)
2724552ff317SArtem Bityutskiy {
2725552ff317SArtem Bityutskiy 	file->private_data = inode->i_private;
27261bbfc848SArtem Bityutskiy 	return nonseekable_open(inode, file);
2727552ff317SArtem Bityutskiy }
2728552ff317SArtem Bityutskiy 
272928488fc2SArtem Bityutskiy /**
273028488fc2SArtem Bityutskiy  * provide_user_output - provide output to the user reading a debugfs file.
273128488fc2SArtem Bityutskiy  * @val: boolean value for the answer
273228488fc2SArtem Bityutskiy  * @u: the buffer to store the answer at
273328488fc2SArtem Bityutskiy  * @count: size of the buffer
273428488fc2SArtem Bityutskiy  * @ppos: position in the @u output buffer
273528488fc2SArtem Bityutskiy  *
273628488fc2SArtem Bityutskiy  * This is a simple helper function which stores @val boolean value in the user
273728488fc2SArtem Bityutskiy  * buffer when the user reads one of UBIFS debugfs files. Returns amount of
273828488fc2SArtem Bityutskiy  * bytes written to @u in case of success and a negative error code in case of
273928488fc2SArtem Bityutskiy  * failure.
274028488fc2SArtem Bityutskiy  */
274128488fc2SArtem Bityutskiy static int provide_user_output(int val, char __user *u, size_t count,
274228488fc2SArtem Bityutskiy 			       loff_t *ppos)
274328488fc2SArtem Bityutskiy {
274428488fc2SArtem Bityutskiy 	char buf[3];
274528488fc2SArtem Bityutskiy 
274628488fc2SArtem Bityutskiy 	if (val)
274728488fc2SArtem Bityutskiy 		buf[0] = '1';
274828488fc2SArtem Bityutskiy 	else
274928488fc2SArtem Bityutskiy 		buf[0] = '0';
275028488fc2SArtem Bityutskiy 	buf[1] = '\n';
275128488fc2SArtem Bityutskiy 	buf[2] = 0x00;
275228488fc2SArtem Bityutskiy 
275328488fc2SArtem Bityutskiy 	return simple_read_from_buffer(u, count, ppos, buf, 2);
275428488fc2SArtem Bityutskiy }
275528488fc2SArtem Bityutskiy 
275681e79d38SArtem Bityutskiy static ssize_t dfs_file_read(struct file *file, char __user *u, size_t count,
275781e79d38SArtem Bityutskiy 			     loff_t *ppos)
275881e79d38SArtem Bityutskiy {
275981e79d38SArtem Bityutskiy 	struct dentry *dent = file->f_path.dentry;
276081e79d38SArtem Bityutskiy 	struct ubifs_info *c = file->private_data;
276181e79d38SArtem Bityutskiy 	struct ubifs_debug_info *d = c->dbg;
276281e79d38SArtem Bityutskiy 	int val;
276381e79d38SArtem Bityutskiy 
276481e79d38SArtem Bityutskiy 	if (dent == d->dfs_chk_gen)
276581e79d38SArtem Bityutskiy 		val = d->chk_gen;
276681e79d38SArtem Bityutskiy 	else if (dent == d->dfs_chk_index)
276781e79d38SArtem Bityutskiy 		val = d->chk_index;
276881e79d38SArtem Bityutskiy 	else if (dent == d->dfs_chk_orph)
276981e79d38SArtem Bityutskiy 		val = d->chk_orph;
277081e79d38SArtem Bityutskiy 	else if (dent == d->dfs_chk_lprops)
277181e79d38SArtem Bityutskiy 		val = d->chk_lprops;
277281e79d38SArtem Bityutskiy 	else if (dent == d->dfs_chk_fs)
277381e79d38SArtem Bityutskiy 		val = d->chk_fs;
277481e79d38SArtem Bityutskiy 	else if (dent == d->dfs_tst_rcvry)
277581e79d38SArtem Bityutskiy 		val = d->tst_rcvry;
277681e79d38SArtem Bityutskiy 	else
277781e79d38SArtem Bityutskiy 		return -EINVAL;
277881e79d38SArtem Bityutskiy 
277928488fc2SArtem Bityutskiy 	return provide_user_output(val, u, count, ppos);
278028488fc2SArtem Bityutskiy }
278181e79d38SArtem Bityutskiy 
278228488fc2SArtem Bityutskiy /**
278328488fc2SArtem Bityutskiy  * interpret_user_input - interpret user debugfs file input.
278428488fc2SArtem Bityutskiy  * @u: user-provided buffer with the input
278528488fc2SArtem Bityutskiy  * @count: buffer size
278628488fc2SArtem Bityutskiy  *
278728488fc2SArtem Bityutskiy  * This is a helper function which interpret user input to a boolean UBIFS
278828488fc2SArtem Bityutskiy  * debugfs file. Returns %0 or %1 in case of success and a negative error code
278928488fc2SArtem Bityutskiy  * in case of failure.
279028488fc2SArtem Bityutskiy  */
279128488fc2SArtem Bityutskiy static int interpret_user_input(const char __user *u, size_t count)
279228488fc2SArtem Bityutskiy {
279328488fc2SArtem Bityutskiy 	size_t buf_size;
279428488fc2SArtem Bityutskiy 	char buf[8];
279528488fc2SArtem Bityutskiy 
279628488fc2SArtem Bityutskiy 	buf_size = min_t(size_t, count, (sizeof(buf) - 1));
279728488fc2SArtem Bityutskiy 	if (copy_from_user(buf, u, buf_size))
279828488fc2SArtem Bityutskiy 		return -EFAULT;
279928488fc2SArtem Bityutskiy 
280028488fc2SArtem Bityutskiy 	if (buf[0] == '1')
280128488fc2SArtem Bityutskiy 		return 1;
280228488fc2SArtem Bityutskiy 	else if (buf[0] == '0')
280328488fc2SArtem Bityutskiy 		return 0;
280428488fc2SArtem Bityutskiy 
280528488fc2SArtem Bityutskiy 	return -EINVAL;
280681e79d38SArtem Bityutskiy }
280781e79d38SArtem Bityutskiy 
280881e79d38SArtem Bityutskiy static ssize_t dfs_file_write(struct file *file, const char __user *u,
2809552ff317SArtem Bityutskiy 			      size_t count, loff_t *ppos)
2810552ff317SArtem Bityutskiy {
2811552ff317SArtem Bityutskiy 	struct ubifs_info *c = file->private_data;
2812552ff317SArtem Bityutskiy 	struct ubifs_debug_info *d = c->dbg;
281381e79d38SArtem Bityutskiy 	struct dentry *dent = file->f_path.dentry;
281481e79d38SArtem Bityutskiy 	int val;
2815552ff317SArtem Bityutskiy 
281681e79d38SArtem Bityutskiy 	/*
281724a4f800SArtem Bityutskiy 	 * TODO: this is racy - the file-system might have already been
281824a4f800SArtem Bityutskiy 	 * unmounted and we'd oops in this case. The plan is to fix it with
281924a4f800SArtem Bityutskiy 	 * help of 'iterate_supers_type()' which we should have in v3.0: when
282024a4f800SArtem Bityutskiy 	 * a debugfs opened, we rember FS's UUID in file->private_data. Then
282124a4f800SArtem Bityutskiy 	 * whenever we access the FS via a debugfs file, we iterate all UBIFS
282224a4f800SArtem Bityutskiy 	 * superblocks and fine the one with the same UUID, and take the
282324a4f800SArtem Bityutskiy 	 * locking right.
282424a4f800SArtem Bityutskiy 	 *
282524a4f800SArtem Bityutskiy 	 * The other way to go suggested by Al Viro is to create a separate
282624a4f800SArtem Bityutskiy 	 * 'ubifs-debug' file-system instead.
282781e79d38SArtem Bityutskiy 	 */
282881e79d38SArtem Bityutskiy 	if (file->f_path.dentry == d->dfs_dump_lprops) {
2829552ff317SArtem Bityutskiy 		dbg_dump_lprops(c);
283081e79d38SArtem Bityutskiy 		return count;
283181e79d38SArtem Bityutskiy 	}
283281e79d38SArtem Bityutskiy 	if (file->f_path.dentry == d->dfs_dump_budg) {
2833f1bd66afSArtem Bityutskiy 		dbg_dump_budg(c, &c->bi);
283481e79d38SArtem Bityutskiy 		return count;
283581e79d38SArtem Bityutskiy 	}
283681e79d38SArtem Bityutskiy 	if (file->f_path.dentry == d->dfs_dump_tnc) {
2837552ff317SArtem Bityutskiy 		mutex_lock(&c->tnc_mutex);
2838552ff317SArtem Bityutskiy 		dbg_dump_tnc(c);
2839552ff317SArtem Bityutskiy 		mutex_unlock(&c->tnc_mutex);
284081e79d38SArtem Bityutskiy 		return count;
284181e79d38SArtem Bityutskiy 	}
284281e79d38SArtem Bityutskiy 
284328488fc2SArtem Bityutskiy 	val = interpret_user_input(u, count);
284428488fc2SArtem Bityutskiy 	if (val < 0)
284528488fc2SArtem Bityutskiy 		return val;
284681e79d38SArtem Bityutskiy 
284781e79d38SArtem Bityutskiy 	if (dent == d->dfs_chk_gen)
284881e79d38SArtem Bityutskiy 		d->chk_gen = val;
284981e79d38SArtem Bityutskiy 	else if (dent == d->dfs_chk_index)
285081e79d38SArtem Bityutskiy 		d->chk_index = val;
285181e79d38SArtem Bityutskiy 	else if (dent == d->dfs_chk_orph)
285281e79d38SArtem Bityutskiy 		d->chk_orph = val;
285381e79d38SArtem Bityutskiy 	else if (dent == d->dfs_chk_lprops)
285481e79d38SArtem Bityutskiy 		d->chk_lprops = val;
285581e79d38SArtem Bityutskiy 	else if (dent == d->dfs_chk_fs)
285681e79d38SArtem Bityutskiy 		d->chk_fs = val;
285781e79d38SArtem Bityutskiy 	else if (dent == d->dfs_tst_rcvry)
285881e79d38SArtem Bityutskiy 		d->tst_rcvry = val;
285981e79d38SArtem Bityutskiy 	else
2860552ff317SArtem Bityutskiy 		return -EINVAL;
2861552ff317SArtem Bityutskiy 
2862552ff317SArtem Bityutskiy 	return count;
2863552ff317SArtem Bityutskiy }
2864552ff317SArtem Bityutskiy 
286584abf972SArtem Bityutskiy static const struct file_operations dfs_fops = {
28667dae997dSArtem Bityutskiy 	.open = dfs_file_open,
286781e79d38SArtem Bityutskiy 	.read = dfs_file_read,
286881e79d38SArtem Bityutskiy 	.write = dfs_file_write,
2869552ff317SArtem Bityutskiy 	.owner = THIS_MODULE,
28701bbfc848SArtem Bityutskiy 	.llseek = no_llseek,
2871552ff317SArtem Bityutskiy };
2872552ff317SArtem Bityutskiy 
2873552ff317SArtem Bityutskiy /**
2874552ff317SArtem Bityutskiy  * dbg_debugfs_init_fs - initialize debugfs for UBIFS instance.
2875552ff317SArtem Bityutskiy  * @c: UBIFS file-system description object
2876552ff317SArtem Bityutskiy  *
2877552ff317SArtem Bityutskiy  * This function creates all debugfs files for this instance of UBIFS. Returns
2878552ff317SArtem Bityutskiy  * zero in case of success and a negative error code in case of failure.
2879552ff317SArtem Bityutskiy  *
2880552ff317SArtem Bityutskiy  * Note, the only reason we have not merged this function with the
2881552ff317SArtem Bityutskiy  * 'ubifs_debugging_init()' function is because it is better to initialize
2882552ff317SArtem Bityutskiy  * debugfs interfaces at the very end of the mount process, and remove them at
2883552ff317SArtem Bityutskiy  * the very beginning of the mount process.
2884552ff317SArtem Bityutskiy  */
2885552ff317SArtem Bityutskiy int dbg_debugfs_init_fs(struct ubifs_info *c)
2886552ff317SArtem Bityutskiy {
2887ae380ce0SArtem Bityutskiy 	int err, n;
2888552ff317SArtem Bityutskiy 	const char *fname;
2889552ff317SArtem Bityutskiy 	struct dentry *dent;
2890552ff317SArtem Bityutskiy 	struct ubifs_debug_info *d = c->dbg;
2891552ff317SArtem Bityutskiy 
2892ae380ce0SArtem Bityutskiy 	n = snprintf(d->dfs_dir_name, UBIFS_DFS_DIR_LEN + 1, UBIFS_DFS_DIR_NAME,
2893ae380ce0SArtem Bityutskiy 		     c->vi.ubi_num, c->vi.vol_id);
2894ae380ce0SArtem Bityutskiy 	if (n == UBIFS_DFS_DIR_LEN) {
2895ae380ce0SArtem Bityutskiy 		/* The array size is too small */
2896ae380ce0SArtem Bityutskiy 		fname = UBIFS_DFS_DIR_NAME;
2897ae380ce0SArtem Bityutskiy 		dent = ERR_PTR(-EINVAL);
2898ae380ce0SArtem Bityutskiy 		goto out;
2899ae380ce0SArtem Bityutskiy 	}
2900ae380ce0SArtem Bityutskiy 
2901cc6a86b9SArtem Bityutskiy 	fname = d->dfs_dir_name;
2902cc6a86b9SArtem Bityutskiy 	dent = debugfs_create_dir(fname, dfs_rootdir);
290395169535SArtem Bityutskiy 	if (IS_ERR_OR_NULL(dent))
2904552ff317SArtem Bityutskiy 		goto out;
2905cc6a86b9SArtem Bityutskiy 	d->dfs_dir = dent;
2906552ff317SArtem Bityutskiy 
2907552ff317SArtem Bityutskiy 	fname = "dump_lprops";
29088c559d30SVasiliy Kulikov 	dent = debugfs_create_file(fname, S_IWUSR, d->dfs_dir, c, &dfs_fops);
290995169535SArtem Bityutskiy 	if (IS_ERR_OR_NULL(dent))
2910552ff317SArtem Bityutskiy 		goto out_remove;
291184abf972SArtem Bityutskiy 	d->dfs_dump_lprops = dent;
2912552ff317SArtem Bityutskiy 
2913552ff317SArtem Bityutskiy 	fname = "dump_budg";
29148c559d30SVasiliy Kulikov 	dent = debugfs_create_file(fname, S_IWUSR, d->dfs_dir, c, &dfs_fops);
291595169535SArtem Bityutskiy 	if (IS_ERR_OR_NULL(dent))
2916552ff317SArtem Bityutskiy 		goto out_remove;
291784abf972SArtem Bityutskiy 	d->dfs_dump_budg = dent;
2918552ff317SArtem Bityutskiy 
2919552ff317SArtem Bityutskiy 	fname = "dump_tnc";
29208c559d30SVasiliy Kulikov 	dent = debugfs_create_file(fname, S_IWUSR, d->dfs_dir, c, &dfs_fops);
292195169535SArtem Bityutskiy 	if (IS_ERR_OR_NULL(dent))
2922552ff317SArtem Bityutskiy 		goto out_remove;
292384abf972SArtem Bityutskiy 	d->dfs_dump_tnc = dent;
2924552ff317SArtem Bityutskiy 
292581e79d38SArtem Bityutskiy 	fname = "chk_general";
292681e79d38SArtem Bityutskiy 	dent = debugfs_create_file(fname, S_IRUSR | S_IWUSR, d->dfs_dir, c,
292781e79d38SArtem Bityutskiy 				   &dfs_fops);
292881e79d38SArtem Bityutskiy 	if (IS_ERR_OR_NULL(dent))
292981e79d38SArtem Bityutskiy 		goto out_remove;
293081e79d38SArtem Bityutskiy 	d->dfs_chk_gen = dent;
293181e79d38SArtem Bityutskiy 
293281e79d38SArtem Bityutskiy 	fname = "chk_index";
293381e79d38SArtem Bityutskiy 	dent = debugfs_create_file(fname, S_IRUSR | S_IWUSR, d->dfs_dir, c,
293481e79d38SArtem Bityutskiy 				   &dfs_fops);
293581e79d38SArtem Bityutskiy 	if (IS_ERR_OR_NULL(dent))
293681e79d38SArtem Bityutskiy 		goto out_remove;
293781e79d38SArtem Bityutskiy 	d->dfs_chk_index = dent;
293881e79d38SArtem Bityutskiy 
293981e79d38SArtem Bityutskiy 	fname = "chk_orphans";
294081e79d38SArtem Bityutskiy 	dent = debugfs_create_file(fname, S_IRUSR | S_IWUSR, d->dfs_dir, c,
294181e79d38SArtem Bityutskiy 				   &dfs_fops);
294281e79d38SArtem Bityutskiy 	if (IS_ERR_OR_NULL(dent))
294381e79d38SArtem Bityutskiy 		goto out_remove;
294481e79d38SArtem Bityutskiy 	d->dfs_chk_orph = dent;
294581e79d38SArtem Bityutskiy 
294681e79d38SArtem Bityutskiy 	fname = "chk_lprops";
294781e79d38SArtem Bityutskiy 	dent = debugfs_create_file(fname, S_IRUSR | S_IWUSR, d->dfs_dir, c,
294881e79d38SArtem Bityutskiy 				   &dfs_fops);
294981e79d38SArtem Bityutskiy 	if (IS_ERR_OR_NULL(dent))
295081e79d38SArtem Bityutskiy 		goto out_remove;
295181e79d38SArtem Bityutskiy 	d->dfs_chk_lprops = dent;
295281e79d38SArtem Bityutskiy 
295381e79d38SArtem Bityutskiy 	fname = "chk_fs";
295481e79d38SArtem Bityutskiy 	dent = debugfs_create_file(fname, S_IRUSR | S_IWUSR, d->dfs_dir, c,
295581e79d38SArtem Bityutskiy 				   &dfs_fops);
295681e79d38SArtem Bityutskiy 	if (IS_ERR_OR_NULL(dent))
295781e79d38SArtem Bityutskiy 		goto out_remove;
295881e79d38SArtem Bityutskiy 	d->dfs_chk_fs = dent;
295981e79d38SArtem Bityutskiy 
296081e79d38SArtem Bityutskiy 	fname = "tst_recovery";
296181e79d38SArtem Bityutskiy 	dent = debugfs_create_file(fname, S_IRUSR | S_IWUSR, d->dfs_dir, c,
296281e79d38SArtem Bityutskiy 				   &dfs_fops);
296381e79d38SArtem Bityutskiy 	if (IS_ERR_OR_NULL(dent))
296481e79d38SArtem Bityutskiy 		goto out_remove;
296581e79d38SArtem Bityutskiy 	d->dfs_tst_rcvry = dent;
296681e79d38SArtem Bityutskiy 
2967552ff317SArtem Bityutskiy 	return 0;
2968552ff317SArtem Bityutskiy 
2969552ff317SArtem Bityutskiy out_remove:
2970cc6a86b9SArtem Bityutskiy 	debugfs_remove_recursive(d->dfs_dir);
2971cc6a86b9SArtem Bityutskiy out:
297295169535SArtem Bityutskiy 	err = dent ? PTR_ERR(dent) : -ENODEV;
2973e7717060SArtem Bityutskiy 	ubifs_err("cannot create \"%s\" debugfs file or directory, error %d\n",
2974552ff317SArtem Bityutskiy 		  fname, err);
2975552ff317SArtem Bityutskiy 	return err;
2976552ff317SArtem Bityutskiy }
2977552ff317SArtem Bityutskiy 
2978552ff317SArtem Bityutskiy /**
2979552ff317SArtem Bityutskiy  * dbg_debugfs_exit_fs - remove all debugfs files.
2980552ff317SArtem Bityutskiy  * @c: UBIFS file-system description object
2981552ff317SArtem Bityutskiy  */
2982552ff317SArtem Bityutskiy void dbg_debugfs_exit_fs(struct ubifs_info *c)
2983552ff317SArtem Bityutskiy {
298484abf972SArtem Bityutskiy 	debugfs_remove_recursive(c->dbg->dfs_dir);
2985552ff317SArtem Bityutskiy }
2986552ff317SArtem Bityutskiy 
2987e7717060SArtem Bityutskiy struct ubifs_global_debug_info ubifs_dbg;
2988e7717060SArtem Bityutskiy 
2989e7717060SArtem Bityutskiy static struct dentry *dfs_chk_gen;
2990e7717060SArtem Bityutskiy static struct dentry *dfs_chk_index;
2991e7717060SArtem Bityutskiy static struct dentry *dfs_chk_orph;
2992e7717060SArtem Bityutskiy static struct dentry *dfs_chk_lprops;
2993e7717060SArtem Bityutskiy static struct dentry *dfs_chk_fs;
2994e7717060SArtem Bityutskiy static struct dentry *dfs_tst_rcvry;
2995e7717060SArtem Bityutskiy 
2996e7717060SArtem Bityutskiy static ssize_t dfs_global_file_read(struct file *file, char __user *u,
2997e7717060SArtem Bityutskiy 				    size_t count, loff_t *ppos)
2998e7717060SArtem Bityutskiy {
2999e7717060SArtem Bityutskiy 	struct dentry *dent = file->f_path.dentry;
3000e7717060SArtem Bityutskiy 	int val;
3001e7717060SArtem Bityutskiy 
3002e7717060SArtem Bityutskiy 	if (dent == dfs_chk_gen)
3003e7717060SArtem Bityutskiy 		val = ubifs_dbg.chk_gen;
3004e7717060SArtem Bityutskiy 	else if (dent == dfs_chk_index)
3005e7717060SArtem Bityutskiy 		val = ubifs_dbg.chk_index;
3006e7717060SArtem Bityutskiy 	else if (dent == dfs_chk_orph)
3007e7717060SArtem Bityutskiy 		val = ubifs_dbg.chk_orph;
3008e7717060SArtem Bityutskiy 	else if (dent == dfs_chk_lprops)
3009e7717060SArtem Bityutskiy 		val = ubifs_dbg.chk_lprops;
3010e7717060SArtem Bityutskiy 	else if (dent == dfs_chk_fs)
3011e7717060SArtem Bityutskiy 		val = ubifs_dbg.chk_fs;
3012e7717060SArtem Bityutskiy 	else if (dent == dfs_tst_rcvry)
3013e7717060SArtem Bityutskiy 		val = ubifs_dbg.tst_rcvry;
3014e7717060SArtem Bityutskiy 	else
3015e7717060SArtem Bityutskiy 		return -EINVAL;
3016e7717060SArtem Bityutskiy 
3017e7717060SArtem Bityutskiy 	return provide_user_output(val, u, count, ppos);
3018e7717060SArtem Bityutskiy }
3019e7717060SArtem Bityutskiy 
3020e7717060SArtem Bityutskiy static ssize_t dfs_global_file_write(struct file *file, const char __user *u,
3021e7717060SArtem Bityutskiy 				     size_t count, loff_t *ppos)
3022e7717060SArtem Bityutskiy {
3023e7717060SArtem Bityutskiy 	struct dentry *dent = file->f_path.dentry;
3024e7717060SArtem Bityutskiy 	int val;
3025e7717060SArtem Bityutskiy 
3026e7717060SArtem Bityutskiy 	val = interpret_user_input(u, count);
3027e7717060SArtem Bityutskiy 	if (val < 0)
3028e7717060SArtem Bityutskiy 		return val;
3029e7717060SArtem Bityutskiy 
3030e7717060SArtem Bityutskiy 	if (dent == dfs_chk_gen)
3031e7717060SArtem Bityutskiy 		ubifs_dbg.chk_gen = val;
3032e7717060SArtem Bityutskiy 	else if (dent == dfs_chk_index)
3033e7717060SArtem Bityutskiy 		ubifs_dbg.chk_index = val;
3034e7717060SArtem Bityutskiy 	else if (dent == dfs_chk_orph)
3035e7717060SArtem Bityutskiy 		ubifs_dbg.chk_orph = val;
3036e7717060SArtem Bityutskiy 	else if (dent == dfs_chk_lprops)
3037e7717060SArtem Bityutskiy 		ubifs_dbg.chk_lprops = val;
3038e7717060SArtem Bityutskiy 	else if (dent == dfs_chk_fs)
3039e7717060SArtem Bityutskiy 		ubifs_dbg.chk_fs = val;
3040e7717060SArtem Bityutskiy 	else if (dent == dfs_tst_rcvry)
3041e7717060SArtem Bityutskiy 		ubifs_dbg.tst_rcvry = val;
3042e7717060SArtem Bityutskiy 	else
3043e7717060SArtem Bityutskiy 		return -EINVAL;
3044e7717060SArtem Bityutskiy 
3045e7717060SArtem Bityutskiy 	return count;
3046e7717060SArtem Bityutskiy }
3047e7717060SArtem Bityutskiy 
3048e7717060SArtem Bityutskiy static const struct file_operations dfs_global_fops = {
3049e7717060SArtem Bityutskiy 	.read = dfs_global_file_read,
3050e7717060SArtem Bityutskiy 	.write = dfs_global_file_write,
3051e7717060SArtem Bityutskiy 	.owner = THIS_MODULE,
3052e7717060SArtem Bityutskiy 	.llseek = no_llseek,
3053e7717060SArtem Bityutskiy };
3054e7717060SArtem Bityutskiy 
30557dae997dSArtem Bityutskiy /**
30567dae997dSArtem Bityutskiy  * dbg_debugfs_init - initialize debugfs file-system.
30577dae997dSArtem Bityutskiy  *
30587dae997dSArtem Bityutskiy  * UBIFS uses debugfs file-system to expose various debugging knobs to
30597dae997dSArtem Bityutskiy  * user-space. This function creates "ubifs" directory in the debugfs
30607dae997dSArtem Bityutskiy  * file-system. Returns zero in case of success and a negative error code in
30617dae997dSArtem Bityutskiy  * case of failure.
30627dae997dSArtem Bityutskiy  */
30637dae997dSArtem Bityutskiy int dbg_debugfs_init(void)
30647dae997dSArtem Bityutskiy {
3065e7717060SArtem Bityutskiy 	int err;
3066e7717060SArtem Bityutskiy 	const char *fname;
3067e7717060SArtem Bityutskiy 	struct dentry *dent;
3068e7717060SArtem Bityutskiy 
3069e7717060SArtem Bityutskiy 	fname = "ubifs";
3070e7717060SArtem Bityutskiy 	dent = debugfs_create_dir(fname, NULL);
3071e7717060SArtem Bityutskiy 	if (IS_ERR_OR_NULL(dent))
3072e7717060SArtem Bityutskiy 		goto out;
3073e7717060SArtem Bityutskiy 	dfs_rootdir = dent;
3074e7717060SArtem Bityutskiy 
3075e7717060SArtem Bityutskiy 	fname = "chk_general";
3076e7717060SArtem Bityutskiy 	dent = debugfs_create_file(fname, S_IRUSR | S_IWUSR, dfs_rootdir, NULL,
3077e7717060SArtem Bityutskiy 				   &dfs_global_fops);
3078e7717060SArtem Bityutskiy 	if (IS_ERR_OR_NULL(dent))
3079e7717060SArtem Bityutskiy 		goto out_remove;
3080e7717060SArtem Bityutskiy 	dfs_chk_gen = dent;
3081e7717060SArtem Bityutskiy 
3082e7717060SArtem Bityutskiy 	fname = "chk_index";
3083e7717060SArtem Bityutskiy 	dent = debugfs_create_file(fname, S_IRUSR | S_IWUSR, dfs_rootdir, NULL,
3084e7717060SArtem Bityutskiy 				   &dfs_global_fops);
3085e7717060SArtem Bityutskiy 	if (IS_ERR_OR_NULL(dent))
3086e7717060SArtem Bityutskiy 		goto out_remove;
3087e7717060SArtem Bityutskiy 	dfs_chk_index = dent;
3088e7717060SArtem Bityutskiy 
3089e7717060SArtem Bityutskiy 	fname = "chk_orphans";
3090e7717060SArtem Bityutskiy 	dent = debugfs_create_file(fname, S_IRUSR | S_IWUSR, dfs_rootdir, NULL,
3091e7717060SArtem Bityutskiy 				   &dfs_global_fops);
3092e7717060SArtem Bityutskiy 	if (IS_ERR_OR_NULL(dent))
3093e7717060SArtem Bityutskiy 		goto out_remove;
3094e7717060SArtem Bityutskiy 	dfs_chk_orph = dent;
3095e7717060SArtem Bityutskiy 
3096e7717060SArtem Bityutskiy 	fname = "chk_lprops";
3097e7717060SArtem Bityutskiy 	dent = debugfs_create_file(fname, S_IRUSR | S_IWUSR, dfs_rootdir, NULL,
3098e7717060SArtem Bityutskiy 				   &dfs_global_fops);
3099e7717060SArtem Bityutskiy 	if (IS_ERR_OR_NULL(dent))
3100e7717060SArtem Bityutskiy 		goto out_remove;
3101e7717060SArtem Bityutskiy 	dfs_chk_lprops = dent;
3102e7717060SArtem Bityutskiy 
3103e7717060SArtem Bityutskiy 	fname = "chk_fs";
3104e7717060SArtem Bityutskiy 	dent = debugfs_create_file(fname, S_IRUSR | S_IWUSR, dfs_rootdir, NULL,
3105e7717060SArtem Bityutskiy 				   &dfs_global_fops);
3106e7717060SArtem Bityutskiy 	if (IS_ERR_OR_NULL(dent))
3107e7717060SArtem Bityutskiy 		goto out_remove;
3108e7717060SArtem Bityutskiy 	dfs_chk_fs = dent;
3109e7717060SArtem Bityutskiy 
3110e7717060SArtem Bityutskiy 	fname = "tst_recovery";
3111e7717060SArtem Bityutskiy 	dent = debugfs_create_file(fname, S_IRUSR | S_IWUSR, dfs_rootdir, NULL,
3112e7717060SArtem Bityutskiy 				   &dfs_global_fops);
3113e7717060SArtem Bityutskiy 	if (IS_ERR_OR_NULL(dent))
3114e7717060SArtem Bityutskiy 		goto out_remove;
3115e7717060SArtem Bityutskiy 	dfs_tst_rcvry = dent;
31167dae997dSArtem Bityutskiy 
31177dae997dSArtem Bityutskiy 	return 0;
3118e7717060SArtem Bityutskiy 
3119e7717060SArtem Bityutskiy out_remove:
3120e7717060SArtem Bityutskiy 	debugfs_remove_recursive(dfs_rootdir);
3121e7717060SArtem Bityutskiy out:
3122e7717060SArtem Bityutskiy 	err = dent ? PTR_ERR(dent) : -ENODEV;
3123e7717060SArtem Bityutskiy 	ubifs_err("cannot create \"%s\" debugfs file or directory, error %d\n",
3124e7717060SArtem Bityutskiy 		  fname, err);
3125e7717060SArtem Bityutskiy 	return err;
31267dae997dSArtem Bityutskiy }
31277dae997dSArtem Bityutskiy 
31287dae997dSArtem Bityutskiy /**
31297dae997dSArtem Bityutskiy  * dbg_debugfs_exit - remove the "ubifs" directory from debugfs file-system.
31307dae997dSArtem Bityutskiy  */
31317dae997dSArtem Bityutskiy void dbg_debugfs_exit(void)
31327dae997dSArtem Bityutskiy {
3133e7717060SArtem Bityutskiy 	debugfs_remove_recursive(dfs_rootdir);
31347dae997dSArtem Bityutskiy }
31357dae997dSArtem Bityutskiy 
31367dae997dSArtem Bityutskiy /**
31377dae997dSArtem Bityutskiy  * ubifs_debugging_init - initialize UBIFS debugging.
31387dae997dSArtem Bityutskiy  * @c: UBIFS file-system description object
31397dae997dSArtem Bityutskiy  *
31407dae997dSArtem Bityutskiy  * This function initializes debugging-related data for the file system.
31417dae997dSArtem Bityutskiy  * Returns zero in case of success and a negative error code in case of
31427dae997dSArtem Bityutskiy  * failure.
31437dae997dSArtem Bityutskiy  */
31447dae997dSArtem Bityutskiy int ubifs_debugging_init(struct ubifs_info *c)
31457dae997dSArtem Bityutskiy {
31467dae997dSArtem Bityutskiy 	c->dbg = kzalloc(sizeof(struct ubifs_debug_info), GFP_KERNEL);
31477dae997dSArtem Bityutskiy 	if (!c->dbg)
31487dae997dSArtem Bityutskiy 		return -ENOMEM;
31497dae997dSArtem Bityutskiy 
31507dae997dSArtem Bityutskiy 	return 0;
31517dae997dSArtem Bityutskiy }
31527dae997dSArtem Bityutskiy 
31537dae997dSArtem Bityutskiy /**
31547dae997dSArtem Bityutskiy  * ubifs_debugging_exit - free debugging data.
31557dae997dSArtem Bityutskiy  * @c: UBIFS file-system description object
31567dae997dSArtem Bityutskiy  */
31577dae997dSArtem Bityutskiy void ubifs_debugging_exit(struct ubifs_info *c)
31587dae997dSArtem Bityutskiy {
31597dae997dSArtem Bityutskiy 	kfree(c->dbg);
31607dae997dSArtem Bityutskiy }
31617dae997dSArtem Bityutskiy 
31621e51764aSArtem Bityutskiy #endif /* CONFIG_UBIFS_FS_DEBUG */
3163