xref: /openbmc/linux/fs/ubifs/debug.c (revision 1112018cefc586cba924770a2b28bff6d2f0aa5c)
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 <linux/module.h>
31552ff317SArtem Bityutskiy #include <linux/debugfs.h>
324d61db4fSArtem Bityutskiy #include <linux/math64.h>
3381e79d38SArtem Bityutskiy #include <linux/uaccess.h>
34a7fa94a9SArtem Bityutskiy #include <linux/random.h>
35a7fa94a9SArtem Bityutskiy #include "ubifs.h"
361e51764aSArtem Bityutskiy 
37b06283c7SArtem Bityutskiy static DEFINE_SPINLOCK(dbg_lock);
381e51764aSArtem Bityutskiy 
391e51764aSArtem Bityutskiy static const char *get_key_fmt(int fmt)
401e51764aSArtem Bityutskiy {
411e51764aSArtem Bityutskiy 	switch (fmt) {
421e51764aSArtem Bityutskiy 	case UBIFS_SIMPLE_KEY_FMT:
431e51764aSArtem Bityutskiy 		return "simple";
441e51764aSArtem Bityutskiy 	default:
451e51764aSArtem Bityutskiy 		return "unknown/invalid format";
461e51764aSArtem Bityutskiy 	}
471e51764aSArtem Bityutskiy }
481e51764aSArtem Bityutskiy 
491e51764aSArtem Bityutskiy static const char *get_key_hash(int hash)
501e51764aSArtem Bityutskiy {
511e51764aSArtem Bityutskiy 	switch (hash) {
521e51764aSArtem Bityutskiy 	case UBIFS_KEY_HASH_R5:
531e51764aSArtem Bityutskiy 		return "R5";
541e51764aSArtem Bityutskiy 	case UBIFS_KEY_HASH_TEST:
551e51764aSArtem Bityutskiy 		return "test";
561e51764aSArtem Bityutskiy 	default:
571e51764aSArtem Bityutskiy 		return "unknown/invalid name hash";
581e51764aSArtem Bityutskiy 	}
591e51764aSArtem Bityutskiy }
601e51764aSArtem Bityutskiy 
611e51764aSArtem Bityutskiy static const char *get_key_type(int type)
621e51764aSArtem Bityutskiy {
631e51764aSArtem Bityutskiy 	switch (type) {
641e51764aSArtem Bityutskiy 	case UBIFS_INO_KEY:
651e51764aSArtem Bityutskiy 		return "inode";
661e51764aSArtem Bityutskiy 	case UBIFS_DENT_KEY:
671e51764aSArtem Bityutskiy 		return "direntry";
681e51764aSArtem Bityutskiy 	case UBIFS_XENT_KEY:
691e51764aSArtem Bityutskiy 		return "xentry";
701e51764aSArtem Bityutskiy 	case UBIFS_DATA_KEY:
711e51764aSArtem Bityutskiy 		return "data";
721e51764aSArtem Bityutskiy 	case UBIFS_TRUN_KEY:
731e51764aSArtem Bityutskiy 		return "truncate";
741e51764aSArtem Bityutskiy 	default:
751e51764aSArtem Bityutskiy 		return "unknown/invalid key";
761e51764aSArtem Bityutskiy 	}
771e51764aSArtem Bityutskiy }
781e51764aSArtem Bityutskiy 
794315fb40SArtem Bityutskiy static const char *get_dent_type(int type)
804315fb40SArtem Bityutskiy {
814315fb40SArtem Bityutskiy 	switch (type) {
824315fb40SArtem Bityutskiy 	case UBIFS_ITYPE_REG:
834315fb40SArtem Bityutskiy 		return "file";
844315fb40SArtem Bityutskiy 	case UBIFS_ITYPE_DIR:
854315fb40SArtem Bityutskiy 		return "dir";
864315fb40SArtem Bityutskiy 	case UBIFS_ITYPE_LNK:
874315fb40SArtem Bityutskiy 		return "symlink";
884315fb40SArtem Bityutskiy 	case UBIFS_ITYPE_BLK:
894315fb40SArtem Bityutskiy 		return "blkdev";
904315fb40SArtem Bityutskiy 	case UBIFS_ITYPE_CHR:
914315fb40SArtem Bityutskiy 		return "char dev";
924315fb40SArtem Bityutskiy 	case UBIFS_ITYPE_FIFO:
934315fb40SArtem Bityutskiy 		return "fifo";
944315fb40SArtem Bityutskiy 	case UBIFS_ITYPE_SOCK:
954315fb40SArtem Bityutskiy 		return "socket";
964315fb40SArtem Bityutskiy 	default:
974315fb40SArtem Bityutskiy 		return "unknown/invalid type";
984315fb40SArtem Bityutskiy 	}
994315fb40SArtem Bityutskiy }
1004315fb40SArtem Bityutskiy 
101515315a1SArtem Bityutskiy const char *dbg_snprintf_key(const struct ubifs_info *c,
102515315a1SArtem Bityutskiy 			     const union ubifs_key *key, char *buffer, int len)
1031e51764aSArtem Bityutskiy {
1041e51764aSArtem Bityutskiy 	char *p = buffer;
1051e51764aSArtem Bityutskiy 	int type = key_type(c, key);
1061e51764aSArtem Bityutskiy 
1071e51764aSArtem Bityutskiy 	if (c->key_fmt == UBIFS_SIMPLE_KEY_FMT) {
1081e51764aSArtem Bityutskiy 		switch (type) {
1091e51764aSArtem Bityutskiy 		case UBIFS_INO_KEY:
110beba0060SArtem Bityutskiy 			len -= snprintf(p, len, "(%lu, %s)",
111beba0060SArtem Bityutskiy 					(unsigned long)key_inum(c, key),
1121e51764aSArtem Bityutskiy 					get_key_type(type));
1131e51764aSArtem Bityutskiy 			break;
1141e51764aSArtem Bityutskiy 		case UBIFS_DENT_KEY:
1151e51764aSArtem Bityutskiy 		case UBIFS_XENT_KEY:
116beba0060SArtem Bityutskiy 			len -= snprintf(p, len, "(%lu, %s, %#08x)",
117e84461adSArtem Bityutskiy 					(unsigned long)key_inum(c, key),
1181e51764aSArtem Bityutskiy 					get_key_type(type), key_hash(c, key));
1191e51764aSArtem Bityutskiy 			break;
1201e51764aSArtem Bityutskiy 		case UBIFS_DATA_KEY:
121beba0060SArtem Bityutskiy 			len -= snprintf(p, len, "(%lu, %s, %u)",
122e84461adSArtem Bityutskiy 					(unsigned long)key_inum(c, key),
1231e51764aSArtem Bityutskiy 					get_key_type(type), key_block(c, key));
1241e51764aSArtem Bityutskiy 			break;
1251e51764aSArtem Bityutskiy 		case UBIFS_TRUN_KEY:
126beba0060SArtem Bityutskiy 			len -= snprintf(p, len, "(%lu, %s)",
127e84461adSArtem Bityutskiy 					(unsigned long)key_inum(c, key),
128e84461adSArtem Bityutskiy 					get_key_type(type));
1291e51764aSArtem Bityutskiy 			break;
1301e51764aSArtem Bityutskiy 		default:
131beba0060SArtem Bityutskiy 			len -= snprintf(p, len, "(bad key type: %#08x, %#08x)",
1321e51764aSArtem Bityutskiy 					key->u32[0], key->u32[1]);
1331e51764aSArtem Bityutskiy 		}
1341e51764aSArtem Bityutskiy 	} else
135beba0060SArtem Bityutskiy 		len -= snprintf(p, len, "bad key format %d", c->key_fmt);
136beba0060SArtem Bityutskiy 	ubifs_assert(len > 0);
137515315a1SArtem Bityutskiy 	return p;
1381e51764aSArtem Bityutskiy }
1391e51764aSArtem Bityutskiy 
1401e51764aSArtem Bityutskiy const char *dbg_ntype(int type)
1411e51764aSArtem Bityutskiy {
1421e51764aSArtem Bityutskiy 	switch (type) {
1431e51764aSArtem Bityutskiy 	case UBIFS_PAD_NODE:
1441e51764aSArtem Bityutskiy 		return "padding node";
1451e51764aSArtem Bityutskiy 	case UBIFS_SB_NODE:
1461e51764aSArtem Bityutskiy 		return "superblock node";
1471e51764aSArtem Bityutskiy 	case UBIFS_MST_NODE:
1481e51764aSArtem Bityutskiy 		return "master node";
1491e51764aSArtem Bityutskiy 	case UBIFS_REF_NODE:
1501e51764aSArtem Bityutskiy 		return "reference node";
1511e51764aSArtem Bityutskiy 	case UBIFS_INO_NODE:
1521e51764aSArtem Bityutskiy 		return "inode node";
1531e51764aSArtem Bityutskiy 	case UBIFS_DENT_NODE:
1541e51764aSArtem Bityutskiy 		return "direntry node";
1551e51764aSArtem Bityutskiy 	case UBIFS_XENT_NODE:
1561e51764aSArtem Bityutskiy 		return "xentry node";
1571e51764aSArtem Bityutskiy 	case UBIFS_DATA_NODE:
1581e51764aSArtem Bityutskiy 		return "data node";
1591e51764aSArtem Bityutskiy 	case UBIFS_TRUN_NODE:
1601e51764aSArtem Bityutskiy 		return "truncate node";
1611e51764aSArtem Bityutskiy 	case UBIFS_IDX_NODE:
1621e51764aSArtem Bityutskiy 		return "indexing node";
1631e51764aSArtem Bityutskiy 	case UBIFS_CS_NODE:
1641e51764aSArtem Bityutskiy 		return "commit start node";
1651e51764aSArtem Bityutskiy 	case UBIFS_ORPH_NODE:
1661e51764aSArtem Bityutskiy 		return "orphan node";
1671e51764aSArtem Bityutskiy 	default:
1681e51764aSArtem Bityutskiy 		return "unknown node";
1691e51764aSArtem Bityutskiy 	}
1701e51764aSArtem Bityutskiy }
1711e51764aSArtem Bityutskiy 
1721e51764aSArtem Bityutskiy static const char *dbg_gtype(int type)
1731e51764aSArtem Bityutskiy {
1741e51764aSArtem Bityutskiy 	switch (type) {
1751e51764aSArtem Bityutskiy 	case UBIFS_NO_NODE_GROUP:
1761e51764aSArtem Bityutskiy 		return "no node group";
1771e51764aSArtem Bityutskiy 	case UBIFS_IN_NODE_GROUP:
1781e51764aSArtem Bityutskiy 		return "in node group";
1791e51764aSArtem Bityutskiy 	case UBIFS_LAST_OF_NODE_GROUP:
1801e51764aSArtem Bityutskiy 		return "last of node group";
1811e51764aSArtem Bityutskiy 	default:
1821e51764aSArtem Bityutskiy 		return "unknown";
1831e51764aSArtem Bityutskiy 	}
1841e51764aSArtem Bityutskiy }
1851e51764aSArtem Bityutskiy 
1861e51764aSArtem Bityutskiy const char *dbg_cstate(int cmt_state)
1871e51764aSArtem Bityutskiy {
1881e51764aSArtem Bityutskiy 	switch (cmt_state) {
1891e51764aSArtem Bityutskiy 	case COMMIT_RESTING:
1901e51764aSArtem Bityutskiy 		return "commit resting";
1911e51764aSArtem Bityutskiy 	case COMMIT_BACKGROUND:
1921e51764aSArtem Bityutskiy 		return "background commit requested";
1931e51764aSArtem Bityutskiy 	case COMMIT_REQUIRED:
1941e51764aSArtem Bityutskiy 		return "commit required";
1951e51764aSArtem Bityutskiy 	case COMMIT_RUNNING_BACKGROUND:
1961e51764aSArtem Bityutskiy 		return "BACKGROUND commit running";
1971e51764aSArtem Bityutskiy 	case COMMIT_RUNNING_REQUIRED:
1981e51764aSArtem Bityutskiy 		return "commit running and required";
1991e51764aSArtem Bityutskiy 	case COMMIT_BROKEN:
2001e51764aSArtem Bityutskiy 		return "broken commit";
2011e51764aSArtem Bityutskiy 	default:
2021e51764aSArtem Bityutskiy 		return "unknown commit state";
2031e51764aSArtem Bityutskiy 	}
2041e51764aSArtem Bityutskiy }
2051e51764aSArtem Bityutskiy 
20677a7ae58SArtem Bityutskiy const char *dbg_jhead(int jhead)
20777a7ae58SArtem Bityutskiy {
20877a7ae58SArtem Bityutskiy 	switch (jhead) {
20977a7ae58SArtem Bityutskiy 	case GCHD:
21077a7ae58SArtem Bityutskiy 		return "0 (GC)";
21177a7ae58SArtem Bityutskiy 	case BASEHD:
21277a7ae58SArtem Bityutskiy 		return "1 (base)";
21377a7ae58SArtem Bityutskiy 	case DATAHD:
21477a7ae58SArtem Bityutskiy 		return "2 (data)";
21577a7ae58SArtem Bityutskiy 	default:
21677a7ae58SArtem Bityutskiy 		return "unknown journal head";
21777a7ae58SArtem Bityutskiy 	}
21877a7ae58SArtem Bityutskiy }
21977a7ae58SArtem Bityutskiy 
2201e51764aSArtem Bityutskiy static void dump_ch(const struct ubifs_ch *ch)
2211e51764aSArtem Bityutskiy {
2226b38d03fSArtem Bityutskiy 	pr_err("\tmagic          %#x\n", le32_to_cpu(ch->magic));
2236b38d03fSArtem Bityutskiy 	pr_err("\tcrc            %#x\n", le32_to_cpu(ch->crc));
2246b38d03fSArtem Bityutskiy 	pr_err("\tnode_type      %d (%s)\n", ch->node_type,
2251e51764aSArtem Bityutskiy 	       dbg_ntype(ch->node_type));
2266b38d03fSArtem Bityutskiy 	pr_err("\tgroup_type     %d (%s)\n", ch->group_type,
2271e51764aSArtem Bityutskiy 	       dbg_gtype(ch->group_type));
2286b38d03fSArtem Bityutskiy 	pr_err("\tsqnum          %llu\n",
2291e51764aSArtem Bityutskiy 	       (unsigned long long)le64_to_cpu(ch->sqnum));
2306b38d03fSArtem Bityutskiy 	pr_err("\tlen            %u\n", le32_to_cpu(ch->len));
2311e51764aSArtem Bityutskiy }
2321e51764aSArtem Bityutskiy 
233edf6be24SArtem Bityutskiy void ubifs_dump_inode(struct ubifs_info *c, const struct inode *inode)
2341e51764aSArtem Bityutskiy {
2351e51764aSArtem Bityutskiy 	const struct ubifs_inode *ui = ubifs_inode(inode);
2364315fb40SArtem Bityutskiy 	struct qstr nm = { .name = NULL };
2374315fb40SArtem Bityutskiy 	union ubifs_key key;
2384315fb40SArtem Bityutskiy 	struct ubifs_dent_node *dent, *pdent = NULL;
2394315fb40SArtem Bityutskiy 	int count = 2;
2401e51764aSArtem Bityutskiy 
2416b38d03fSArtem Bityutskiy 	pr_err("Dump in-memory inode:");
2426b38d03fSArtem Bityutskiy 	pr_err("\tinode          %lu\n", inode->i_ino);
2436b38d03fSArtem Bityutskiy 	pr_err("\tsize           %llu\n",
2441e51764aSArtem Bityutskiy 	       (unsigned long long)i_size_read(inode));
2456b38d03fSArtem Bityutskiy 	pr_err("\tnlink          %u\n", inode->i_nlink);
246782c3fb2SLinus Torvalds 	pr_err("\tuid            %u\n", (unsigned int)i_uid_read(inode));
247782c3fb2SLinus Torvalds 	pr_err("\tgid            %u\n", (unsigned int)i_gid_read(inode));
2486b38d03fSArtem Bityutskiy 	pr_err("\tatime          %u.%u\n",
2491e51764aSArtem Bityutskiy 	       (unsigned int)inode->i_atime.tv_sec,
2501e51764aSArtem Bityutskiy 	       (unsigned int)inode->i_atime.tv_nsec);
2516b38d03fSArtem Bityutskiy 	pr_err("\tmtime          %u.%u\n",
2521e51764aSArtem Bityutskiy 	       (unsigned int)inode->i_mtime.tv_sec,
2531e51764aSArtem Bityutskiy 	       (unsigned int)inode->i_mtime.tv_nsec);
2546b38d03fSArtem Bityutskiy 	pr_err("\tctime          %u.%u\n",
2551e51764aSArtem Bityutskiy 	       (unsigned int)inode->i_ctime.tv_sec,
2561e51764aSArtem Bityutskiy 	       (unsigned int)inode->i_ctime.tv_nsec);
2576b38d03fSArtem Bityutskiy 	pr_err("\tcreat_sqnum    %llu\n", ui->creat_sqnum);
2586b38d03fSArtem Bityutskiy 	pr_err("\txattr_size     %u\n", ui->xattr_size);
2596b38d03fSArtem Bityutskiy 	pr_err("\txattr_cnt      %u\n", ui->xattr_cnt);
2606b38d03fSArtem Bityutskiy 	pr_err("\txattr_names    %u\n", ui->xattr_names);
2616b38d03fSArtem Bityutskiy 	pr_err("\tdirty          %u\n", ui->dirty);
2626b38d03fSArtem Bityutskiy 	pr_err("\txattr          %u\n", ui->xattr);
263*1112018cSAndreas Gruenbacher 	pr_err("\tbulk_read      %u\n", ui->bulk_read);
2646b38d03fSArtem Bityutskiy 	pr_err("\tsynced_i_size  %llu\n",
265b5e426e9SArtem Bityutskiy 	       (unsigned long long)ui->synced_i_size);
2666b38d03fSArtem Bityutskiy 	pr_err("\tui_size        %llu\n",
267b5e426e9SArtem Bityutskiy 	       (unsigned long long)ui->ui_size);
2686b38d03fSArtem Bityutskiy 	pr_err("\tflags          %d\n", ui->flags);
2696b38d03fSArtem Bityutskiy 	pr_err("\tcompr_type     %d\n", ui->compr_type);
2706b38d03fSArtem Bityutskiy 	pr_err("\tlast_page_read %lu\n", ui->last_page_read);
2716b38d03fSArtem Bityutskiy 	pr_err("\tread_in_a_row  %lu\n", ui->read_in_a_row);
2726b38d03fSArtem Bityutskiy 	pr_err("\tdata_len       %d\n", ui->data_len);
2734315fb40SArtem Bityutskiy 
2744315fb40SArtem Bityutskiy 	if (!S_ISDIR(inode->i_mode))
2754315fb40SArtem Bityutskiy 		return;
2764315fb40SArtem Bityutskiy 
2776b38d03fSArtem Bityutskiy 	pr_err("List of directory entries:\n");
2784315fb40SArtem Bityutskiy 	ubifs_assert(!mutex_is_locked(&c->tnc_mutex));
2794315fb40SArtem Bityutskiy 
2804315fb40SArtem Bityutskiy 	lowest_dent_key(c, &key, inode->i_ino);
2814315fb40SArtem Bityutskiy 	while (1) {
2824315fb40SArtem Bityutskiy 		dent = ubifs_tnc_next_ent(c, &key, &nm);
2834315fb40SArtem Bityutskiy 		if (IS_ERR(dent)) {
2844315fb40SArtem Bityutskiy 			if (PTR_ERR(dent) != -ENOENT)
2856b38d03fSArtem Bityutskiy 				pr_err("error %ld\n", PTR_ERR(dent));
2864315fb40SArtem Bityutskiy 			break;
2874315fb40SArtem Bityutskiy 		}
2884315fb40SArtem Bityutskiy 
2896b38d03fSArtem Bityutskiy 		pr_err("\t%d: %s (%s)\n",
2904315fb40SArtem Bityutskiy 		       count++, dent->name, get_dent_type(dent->type));
2914315fb40SArtem Bityutskiy 
2924315fb40SArtem Bityutskiy 		nm.name = dent->name;
2934315fb40SArtem Bityutskiy 		nm.len = le16_to_cpu(dent->nlen);
2944315fb40SArtem Bityutskiy 		kfree(pdent);
2954315fb40SArtem Bityutskiy 		pdent = dent;
2964315fb40SArtem Bityutskiy 		key_read(c, &dent->key, &key);
2974315fb40SArtem Bityutskiy 	}
2984315fb40SArtem Bityutskiy 	kfree(pdent);
2991e51764aSArtem Bityutskiy }
3001e51764aSArtem Bityutskiy 
301edf6be24SArtem Bityutskiy void ubifs_dump_node(const struct ubifs_info *c, const void *node)
3021e51764aSArtem Bityutskiy {
3031e51764aSArtem Bityutskiy 	int i, n;
3041e51764aSArtem Bityutskiy 	union ubifs_key key;
3051e51764aSArtem Bityutskiy 	const struct ubifs_ch *ch = node;
306515315a1SArtem Bityutskiy 	char key_buf[DBG_KEY_BUF_LEN];
3071e51764aSArtem Bityutskiy 
3081e51764aSArtem Bityutskiy 	/* If the magic is incorrect, just hexdump the first bytes */
3091e51764aSArtem Bityutskiy 	if (le32_to_cpu(ch->magic) != UBIFS_NODE_MAGIC) {
3106b38d03fSArtem Bityutskiy 		pr_err("Not a node, first %zu bytes:", UBIFS_CH_SZ);
31116c395caSArtem Bityutskiy 		print_hex_dump(KERN_ERR, "", DUMP_PREFIX_OFFSET, 32, 1,
3121e51764aSArtem Bityutskiy 			       (void *)node, UBIFS_CH_SZ, 1);
3131e51764aSArtem Bityutskiy 		return;
3141e51764aSArtem Bityutskiy 	}
3151e51764aSArtem Bityutskiy 
3161e51764aSArtem Bityutskiy 	spin_lock(&dbg_lock);
3171e51764aSArtem Bityutskiy 	dump_ch(node);
3181e51764aSArtem Bityutskiy 
3191e51764aSArtem Bityutskiy 	switch (ch->node_type) {
3201e51764aSArtem Bityutskiy 	case UBIFS_PAD_NODE:
3211e51764aSArtem Bityutskiy 	{
3221e51764aSArtem Bityutskiy 		const struct ubifs_pad_node *pad = node;
3231e51764aSArtem Bityutskiy 
3246b38d03fSArtem Bityutskiy 		pr_err("\tpad_len        %u\n", le32_to_cpu(pad->pad_len));
3251e51764aSArtem Bityutskiy 		break;
3261e51764aSArtem Bityutskiy 	}
3271e51764aSArtem Bityutskiy 	case UBIFS_SB_NODE:
3281e51764aSArtem Bityutskiy 	{
3291e51764aSArtem Bityutskiy 		const struct ubifs_sb_node *sup = node;
3301e51764aSArtem Bityutskiy 		unsigned int sup_flags = le32_to_cpu(sup->flags);
3311e51764aSArtem Bityutskiy 
3326b38d03fSArtem Bityutskiy 		pr_err("\tkey_hash       %d (%s)\n",
3331e51764aSArtem Bityutskiy 		       (int)sup->key_hash, get_key_hash(sup->key_hash));
3346b38d03fSArtem Bityutskiy 		pr_err("\tkey_fmt        %d (%s)\n",
3351e51764aSArtem Bityutskiy 		       (int)sup->key_fmt, get_key_fmt(sup->key_fmt));
3366b38d03fSArtem Bityutskiy 		pr_err("\tflags          %#x\n", sup_flags);
3376b38d03fSArtem Bityutskiy 		pr_err("\tbig_lpt        %u\n",
3381e51764aSArtem Bityutskiy 		       !!(sup_flags & UBIFS_FLG_BIGLPT));
3396b38d03fSArtem Bityutskiy 		pr_err("\tspace_fixup    %u\n",
3409f58d350SMatthew L. Creech 		       !!(sup_flags & UBIFS_FLG_SPACE_FIXUP));
3416b38d03fSArtem Bityutskiy 		pr_err("\tmin_io_size    %u\n", le32_to_cpu(sup->min_io_size));
3426b38d03fSArtem Bityutskiy 		pr_err("\tleb_size       %u\n", le32_to_cpu(sup->leb_size));
3436b38d03fSArtem Bityutskiy 		pr_err("\tleb_cnt        %u\n", le32_to_cpu(sup->leb_cnt));
3446b38d03fSArtem Bityutskiy 		pr_err("\tmax_leb_cnt    %u\n", le32_to_cpu(sup->max_leb_cnt));
3456b38d03fSArtem Bityutskiy 		pr_err("\tmax_bud_bytes  %llu\n",
3461e51764aSArtem Bityutskiy 		       (unsigned long long)le64_to_cpu(sup->max_bud_bytes));
3476b38d03fSArtem Bityutskiy 		pr_err("\tlog_lebs       %u\n", le32_to_cpu(sup->log_lebs));
3486b38d03fSArtem Bityutskiy 		pr_err("\tlpt_lebs       %u\n", le32_to_cpu(sup->lpt_lebs));
3496b38d03fSArtem Bityutskiy 		pr_err("\torph_lebs      %u\n", le32_to_cpu(sup->orph_lebs));
3506b38d03fSArtem Bityutskiy 		pr_err("\tjhead_cnt      %u\n", le32_to_cpu(sup->jhead_cnt));
3516b38d03fSArtem Bityutskiy 		pr_err("\tfanout         %u\n", le32_to_cpu(sup->fanout));
3526b38d03fSArtem Bityutskiy 		pr_err("\tlsave_cnt      %u\n", le32_to_cpu(sup->lsave_cnt));
3536b38d03fSArtem Bityutskiy 		pr_err("\tdefault_compr  %u\n",
3541e51764aSArtem Bityutskiy 		       (int)le16_to_cpu(sup->default_compr));
3556b38d03fSArtem Bityutskiy 		pr_err("\trp_size        %llu\n",
3561e51764aSArtem Bityutskiy 		       (unsigned long long)le64_to_cpu(sup->rp_size));
3576b38d03fSArtem Bityutskiy 		pr_err("\trp_uid         %u\n", le32_to_cpu(sup->rp_uid));
3586b38d03fSArtem Bityutskiy 		pr_err("\trp_gid         %u\n", le32_to_cpu(sup->rp_gid));
3596b38d03fSArtem Bityutskiy 		pr_err("\tfmt_version    %u\n", le32_to_cpu(sup->fmt_version));
3606b38d03fSArtem Bityutskiy 		pr_err("\ttime_gran      %u\n", le32_to_cpu(sup->time_gran));
3616b38d03fSArtem Bityutskiy 		pr_err("\tUUID           %pUB\n", sup->uuid);
3621e51764aSArtem Bityutskiy 		break;
3631e51764aSArtem Bityutskiy 	}
3641e51764aSArtem Bityutskiy 	case UBIFS_MST_NODE:
3651e51764aSArtem Bityutskiy 	{
3661e51764aSArtem Bityutskiy 		const struct ubifs_mst_node *mst = node;
3671e51764aSArtem Bityutskiy 
3686b38d03fSArtem Bityutskiy 		pr_err("\thighest_inum   %llu\n",
3691e51764aSArtem Bityutskiy 		       (unsigned long long)le64_to_cpu(mst->highest_inum));
3706b38d03fSArtem Bityutskiy 		pr_err("\tcommit number  %llu\n",
3711e51764aSArtem Bityutskiy 		       (unsigned long long)le64_to_cpu(mst->cmt_no));
3726b38d03fSArtem Bityutskiy 		pr_err("\tflags          %#x\n", le32_to_cpu(mst->flags));
3736b38d03fSArtem Bityutskiy 		pr_err("\tlog_lnum       %u\n", le32_to_cpu(mst->log_lnum));
3746b38d03fSArtem Bityutskiy 		pr_err("\troot_lnum      %u\n", le32_to_cpu(mst->root_lnum));
3756b38d03fSArtem Bityutskiy 		pr_err("\troot_offs      %u\n", le32_to_cpu(mst->root_offs));
3766b38d03fSArtem Bityutskiy 		pr_err("\troot_len       %u\n", le32_to_cpu(mst->root_len));
3776b38d03fSArtem Bityutskiy 		pr_err("\tgc_lnum        %u\n", le32_to_cpu(mst->gc_lnum));
3786b38d03fSArtem Bityutskiy 		pr_err("\tihead_lnum     %u\n", le32_to_cpu(mst->ihead_lnum));
3796b38d03fSArtem Bityutskiy 		pr_err("\tihead_offs     %u\n", le32_to_cpu(mst->ihead_offs));
3806b38d03fSArtem Bityutskiy 		pr_err("\tindex_size     %llu\n",
3810ecb9529SHarvey Harrison 		       (unsigned long long)le64_to_cpu(mst->index_size));
3826b38d03fSArtem Bityutskiy 		pr_err("\tlpt_lnum       %u\n", le32_to_cpu(mst->lpt_lnum));
3836b38d03fSArtem Bityutskiy 		pr_err("\tlpt_offs       %u\n", le32_to_cpu(mst->lpt_offs));
3846b38d03fSArtem Bityutskiy 		pr_err("\tnhead_lnum     %u\n", le32_to_cpu(mst->nhead_lnum));
3856b38d03fSArtem Bityutskiy 		pr_err("\tnhead_offs     %u\n", le32_to_cpu(mst->nhead_offs));
3866b38d03fSArtem Bityutskiy 		pr_err("\tltab_lnum      %u\n", le32_to_cpu(mst->ltab_lnum));
3876b38d03fSArtem Bityutskiy 		pr_err("\tltab_offs      %u\n", le32_to_cpu(mst->ltab_offs));
3886b38d03fSArtem Bityutskiy 		pr_err("\tlsave_lnum     %u\n", le32_to_cpu(mst->lsave_lnum));
3896b38d03fSArtem Bityutskiy 		pr_err("\tlsave_offs     %u\n", le32_to_cpu(mst->lsave_offs));
3906b38d03fSArtem Bityutskiy 		pr_err("\tlscan_lnum     %u\n", le32_to_cpu(mst->lscan_lnum));
3916b38d03fSArtem Bityutskiy 		pr_err("\tleb_cnt        %u\n", le32_to_cpu(mst->leb_cnt));
3926b38d03fSArtem Bityutskiy 		pr_err("\tempty_lebs     %u\n", le32_to_cpu(mst->empty_lebs));
3936b38d03fSArtem Bityutskiy 		pr_err("\tidx_lebs       %u\n", le32_to_cpu(mst->idx_lebs));
3946b38d03fSArtem Bityutskiy 		pr_err("\ttotal_free     %llu\n",
3951e51764aSArtem Bityutskiy 		       (unsigned long long)le64_to_cpu(mst->total_free));
3966b38d03fSArtem Bityutskiy 		pr_err("\ttotal_dirty    %llu\n",
3971e51764aSArtem Bityutskiy 		       (unsigned long long)le64_to_cpu(mst->total_dirty));
3986b38d03fSArtem Bityutskiy 		pr_err("\ttotal_used     %llu\n",
3991e51764aSArtem Bityutskiy 		       (unsigned long long)le64_to_cpu(mst->total_used));
4006b38d03fSArtem Bityutskiy 		pr_err("\ttotal_dead     %llu\n",
4011e51764aSArtem Bityutskiy 		       (unsigned long long)le64_to_cpu(mst->total_dead));
4026b38d03fSArtem Bityutskiy 		pr_err("\ttotal_dark     %llu\n",
4031e51764aSArtem Bityutskiy 		       (unsigned long long)le64_to_cpu(mst->total_dark));
4041e51764aSArtem Bityutskiy 		break;
4051e51764aSArtem Bityutskiy 	}
4061e51764aSArtem Bityutskiy 	case UBIFS_REF_NODE:
4071e51764aSArtem Bityutskiy 	{
4081e51764aSArtem Bityutskiy 		const struct ubifs_ref_node *ref = node;
4091e51764aSArtem Bityutskiy 
4106b38d03fSArtem Bityutskiy 		pr_err("\tlnum           %u\n", le32_to_cpu(ref->lnum));
4116b38d03fSArtem Bityutskiy 		pr_err("\toffs           %u\n", le32_to_cpu(ref->offs));
4126b38d03fSArtem Bityutskiy 		pr_err("\tjhead          %u\n", le32_to_cpu(ref->jhead));
4131e51764aSArtem Bityutskiy 		break;
4141e51764aSArtem Bityutskiy 	}
4151e51764aSArtem Bityutskiy 	case UBIFS_INO_NODE:
4161e51764aSArtem Bityutskiy 	{
4171e51764aSArtem Bityutskiy 		const struct ubifs_ino_node *ino = node;
4181e51764aSArtem Bityutskiy 
4191e51764aSArtem Bityutskiy 		key_read(c, &ino->key, &key);
4206b38d03fSArtem Bityutskiy 		pr_err("\tkey            %s\n",
421515315a1SArtem Bityutskiy 		       dbg_snprintf_key(c, &key, key_buf, DBG_KEY_BUF_LEN));
4226b38d03fSArtem Bityutskiy 		pr_err("\tcreat_sqnum    %llu\n",
4231e51764aSArtem Bityutskiy 		       (unsigned long long)le64_to_cpu(ino->creat_sqnum));
4246b38d03fSArtem Bityutskiy 		pr_err("\tsize           %llu\n",
4251e51764aSArtem Bityutskiy 		       (unsigned long long)le64_to_cpu(ino->size));
4266b38d03fSArtem Bityutskiy 		pr_err("\tnlink          %u\n", le32_to_cpu(ino->nlink));
4276b38d03fSArtem Bityutskiy 		pr_err("\tatime          %lld.%u\n",
4281e51764aSArtem Bityutskiy 		       (long long)le64_to_cpu(ino->atime_sec),
4291e51764aSArtem Bityutskiy 		       le32_to_cpu(ino->atime_nsec));
4306b38d03fSArtem Bityutskiy 		pr_err("\tmtime          %lld.%u\n",
4311e51764aSArtem Bityutskiy 		       (long long)le64_to_cpu(ino->mtime_sec),
4321e51764aSArtem Bityutskiy 		       le32_to_cpu(ino->mtime_nsec));
4336b38d03fSArtem Bityutskiy 		pr_err("\tctime          %lld.%u\n",
4341e51764aSArtem Bityutskiy 		       (long long)le64_to_cpu(ino->ctime_sec),
4351e51764aSArtem Bityutskiy 		       le32_to_cpu(ino->ctime_nsec));
4366b38d03fSArtem Bityutskiy 		pr_err("\tuid            %u\n", le32_to_cpu(ino->uid));
4376b38d03fSArtem Bityutskiy 		pr_err("\tgid            %u\n", le32_to_cpu(ino->gid));
4386b38d03fSArtem Bityutskiy 		pr_err("\tmode           %u\n", le32_to_cpu(ino->mode));
4396b38d03fSArtem Bityutskiy 		pr_err("\tflags          %#x\n", le32_to_cpu(ino->flags));
4406b38d03fSArtem Bityutskiy 		pr_err("\txattr_cnt      %u\n", le32_to_cpu(ino->xattr_cnt));
4416b38d03fSArtem Bityutskiy 		pr_err("\txattr_size     %u\n", le32_to_cpu(ino->xattr_size));
4426b38d03fSArtem Bityutskiy 		pr_err("\txattr_names    %u\n", le32_to_cpu(ino->xattr_names));
4436b38d03fSArtem Bityutskiy 		pr_err("\tcompr_type     %#x\n",
4441e51764aSArtem Bityutskiy 		       (int)le16_to_cpu(ino->compr_type));
4456b38d03fSArtem Bityutskiy 		pr_err("\tdata len       %u\n", le32_to_cpu(ino->data_len));
4461e51764aSArtem Bityutskiy 		break;
4471e51764aSArtem Bityutskiy 	}
4481e51764aSArtem Bityutskiy 	case UBIFS_DENT_NODE:
4491e51764aSArtem Bityutskiy 	case UBIFS_XENT_NODE:
4501e51764aSArtem Bityutskiy 	{
4511e51764aSArtem Bityutskiy 		const struct ubifs_dent_node *dent = node;
4521e51764aSArtem Bityutskiy 		int nlen = le16_to_cpu(dent->nlen);
4531e51764aSArtem Bityutskiy 
4541e51764aSArtem Bityutskiy 		key_read(c, &dent->key, &key);
4556b38d03fSArtem Bityutskiy 		pr_err("\tkey            %s\n",
456515315a1SArtem Bityutskiy 		       dbg_snprintf_key(c, &key, key_buf, DBG_KEY_BUF_LEN));
4576b38d03fSArtem Bityutskiy 		pr_err("\tinum           %llu\n",
4581e51764aSArtem Bityutskiy 		       (unsigned long long)le64_to_cpu(dent->inum));
4596b38d03fSArtem Bityutskiy 		pr_err("\ttype           %d\n", (int)dent->type);
4606b38d03fSArtem Bityutskiy 		pr_err("\tnlen           %d\n", nlen);
4616b38d03fSArtem Bityutskiy 		pr_err("\tname           ");
4621e51764aSArtem Bityutskiy 
4631e51764aSArtem Bityutskiy 		if (nlen > UBIFS_MAX_NLEN)
4646b38d03fSArtem Bityutskiy 			pr_err("(bad name length, not printing, bad or corrupted node)");
4651e51764aSArtem Bityutskiy 		else {
4661e51764aSArtem Bityutskiy 			for (i = 0; i < nlen && dent->name[i]; i++)
4676b38d03fSArtem Bityutskiy 				pr_cont("%c", dent->name[i]);
4681e51764aSArtem Bityutskiy 		}
4696b38d03fSArtem Bityutskiy 		pr_cont("\n");
4701e51764aSArtem Bityutskiy 
4711e51764aSArtem Bityutskiy 		break;
4721e51764aSArtem Bityutskiy 	}
4731e51764aSArtem Bityutskiy 	case UBIFS_DATA_NODE:
4741e51764aSArtem Bityutskiy 	{
4751e51764aSArtem Bityutskiy 		const struct ubifs_data_node *dn = node;
4761e51764aSArtem Bityutskiy 		int dlen = le32_to_cpu(ch->len) - UBIFS_DATA_NODE_SZ;
4771e51764aSArtem Bityutskiy 
4781e51764aSArtem Bityutskiy 		key_read(c, &dn->key, &key);
4796b38d03fSArtem Bityutskiy 		pr_err("\tkey            %s\n",
480515315a1SArtem Bityutskiy 		       dbg_snprintf_key(c, &key, key_buf, DBG_KEY_BUF_LEN));
4816b38d03fSArtem Bityutskiy 		pr_err("\tsize           %u\n", le32_to_cpu(dn->size));
4826b38d03fSArtem Bityutskiy 		pr_err("\tcompr_typ      %d\n",
4831e51764aSArtem Bityutskiy 		       (int)le16_to_cpu(dn->compr_type));
4846b38d03fSArtem Bityutskiy 		pr_err("\tdata size      %d\n", dlen);
4856b38d03fSArtem Bityutskiy 		pr_err("\tdata:\n");
48616c395caSArtem Bityutskiy 		print_hex_dump(KERN_ERR, "\t", DUMP_PREFIX_OFFSET, 32, 1,
4871e51764aSArtem Bityutskiy 			       (void *)&dn->data, dlen, 0);
4881e51764aSArtem Bityutskiy 		break;
4891e51764aSArtem Bityutskiy 	}
4901e51764aSArtem Bityutskiy 	case UBIFS_TRUN_NODE:
4911e51764aSArtem Bityutskiy 	{
4921e51764aSArtem Bityutskiy 		const struct ubifs_trun_node *trun = node;
4931e51764aSArtem Bityutskiy 
4946b38d03fSArtem Bityutskiy 		pr_err("\tinum           %u\n", le32_to_cpu(trun->inum));
4956b38d03fSArtem Bityutskiy 		pr_err("\told_size       %llu\n",
4961e51764aSArtem Bityutskiy 		       (unsigned long long)le64_to_cpu(trun->old_size));
4976b38d03fSArtem Bityutskiy 		pr_err("\tnew_size       %llu\n",
4981e51764aSArtem Bityutskiy 		       (unsigned long long)le64_to_cpu(trun->new_size));
4991e51764aSArtem Bityutskiy 		break;
5001e51764aSArtem Bityutskiy 	}
5011e51764aSArtem Bityutskiy 	case UBIFS_IDX_NODE:
5021e51764aSArtem Bityutskiy 	{
5031e51764aSArtem Bityutskiy 		const struct ubifs_idx_node *idx = node;
5041e51764aSArtem Bityutskiy 
5051e51764aSArtem Bityutskiy 		n = le16_to_cpu(idx->child_cnt);
5066b38d03fSArtem Bityutskiy 		pr_err("\tchild_cnt      %d\n", n);
5076b38d03fSArtem Bityutskiy 		pr_err("\tlevel          %d\n", (int)le16_to_cpu(idx->level));
5086b38d03fSArtem Bityutskiy 		pr_err("\tBranches:\n");
5091e51764aSArtem Bityutskiy 
5101e51764aSArtem Bityutskiy 		for (i = 0; i < n && i < c->fanout - 1; i++) {
5111e51764aSArtem Bityutskiy 			const struct ubifs_branch *br;
5121e51764aSArtem Bityutskiy 
5131e51764aSArtem Bityutskiy 			br = ubifs_idx_branch(c, idx, i);
5141e51764aSArtem Bityutskiy 			key_read(c, &br->key, &key);
5156b38d03fSArtem Bityutskiy 			pr_err("\t%d: LEB %d:%d len %d key %s\n",
5161e51764aSArtem Bityutskiy 			       i, le32_to_cpu(br->lnum), le32_to_cpu(br->offs),
517515315a1SArtem Bityutskiy 			       le32_to_cpu(br->len),
518515315a1SArtem Bityutskiy 			       dbg_snprintf_key(c, &key, key_buf,
519515315a1SArtem Bityutskiy 						DBG_KEY_BUF_LEN));
5201e51764aSArtem Bityutskiy 		}
5211e51764aSArtem Bityutskiy 		break;
5221e51764aSArtem Bityutskiy 	}
5231e51764aSArtem Bityutskiy 	case UBIFS_CS_NODE:
5241e51764aSArtem Bityutskiy 		break;
5251e51764aSArtem Bityutskiy 	case UBIFS_ORPH_NODE:
5261e51764aSArtem Bityutskiy 	{
5271e51764aSArtem Bityutskiy 		const struct ubifs_orph_node *orph = node;
5281e51764aSArtem Bityutskiy 
5296b38d03fSArtem Bityutskiy 		pr_err("\tcommit number  %llu\n",
5301e51764aSArtem Bityutskiy 		       (unsigned long long)
5311e51764aSArtem Bityutskiy 				le64_to_cpu(orph->cmt_no) & LLONG_MAX);
5326b38d03fSArtem Bityutskiy 		pr_err("\tlast node flag %llu\n",
5331e51764aSArtem Bityutskiy 		       (unsigned long long)(le64_to_cpu(orph->cmt_no)) >> 63);
5341e51764aSArtem Bityutskiy 		n = (le32_to_cpu(ch->len) - UBIFS_ORPH_NODE_SZ) >> 3;
5356b38d03fSArtem Bityutskiy 		pr_err("\t%d orphan inode numbers:\n", n);
5361e51764aSArtem Bityutskiy 		for (i = 0; i < n; i++)
5376b38d03fSArtem Bityutskiy 			pr_err("\t  ino %llu\n",
5387424bac8SAlexander Beregalov 			       (unsigned long long)le64_to_cpu(orph->inos[i]));
5391e51764aSArtem Bityutskiy 		break;
5401e51764aSArtem Bityutskiy 	}
5411e51764aSArtem Bityutskiy 	default:
5426b38d03fSArtem Bityutskiy 		pr_err("node type %d was not recognized\n",
5431e51764aSArtem Bityutskiy 		       (int)ch->node_type);
5441e51764aSArtem Bityutskiy 	}
5451e51764aSArtem Bityutskiy 	spin_unlock(&dbg_lock);
5461e51764aSArtem Bityutskiy }
5471e51764aSArtem Bityutskiy 
548edf6be24SArtem Bityutskiy void ubifs_dump_budget_req(const struct ubifs_budget_req *req)
5491e51764aSArtem Bityutskiy {
5501e51764aSArtem Bityutskiy 	spin_lock(&dbg_lock);
5516b38d03fSArtem Bityutskiy 	pr_err("Budgeting request: new_ino %d, dirtied_ino %d\n",
5521e51764aSArtem Bityutskiy 	       req->new_ino, req->dirtied_ino);
5536b38d03fSArtem Bityutskiy 	pr_err("\tnew_ino_d   %d, dirtied_ino_d %d\n",
5541e51764aSArtem Bityutskiy 	       req->new_ino_d, req->dirtied_ino_d);
5556b38d03fSArtem Bityutskiy 	pr_err("\tnew_page    %d, dirtied_page %d\n",
5561e51764aSArtem Bityutskiy 	       req->new_page, req->dirtied_page);
5576b38d03fSArtem Bityutskiy 	pr_err("\tnew_dent    %d, mod_dent     %d\n",
5581e51764aSArtem Bityutskiy 	       req->new_dent, req->mod_dent);
5596b38d03fSArtem Bityutskiy 	pr_err("\tidx_growth  %d\n", req->idx_growth);
5606b38d03fSArtem Bityutskiy 	pr_err("\tdata_growth %d dd_growth     %d\n",
5611e51764aSArtem Bityutskiy 	       req->data_growth, req->dd_growth);
5621e51764aSArtem Bityutskiy 	spin_unlock(&dbg_lock);
5631e51764aSArtem Bityutskiy }
5641e51764aSArtem Bityutskiy 
565edf6be24SArtem Bityutskiy void ubifs_dump_lstats(const struct ubifs_lp_stats *lst)
5661e51764aSArtem Bityutskiy {
5671e51764aSArtem Bityutskiy 	spin_lock(&dbg_lock);
5686b38d03fSArtem Bityutskiy 	pr_err("(pid %d) Lprops statistics: empty_lebs %d, idx_lebs  %d\n",
56979fda517SArtem Bityutskiy 	       current->pid, lst->empty_lebs, lst->idx_lebs);
5706b38d03fSArtem Bityutskiy 	pr_err("\ttaken_empty_lebs %d, total_free %lld, total_dirty %lld\n",
57179fda517SArtem Bityutskiy 	       lst->taken_empty_lebs, lst->total_free, lst->total_dirty);
5726b38d03fSArtem Bityutskiy 	pr_err("\ttotal_used %lld, total_dark %lld, total_dead %lld\n",
57379fda517SArtem Bityutskiy 	       lst->total_used, lst->total_dark, lst->total_dead);
5741e51764aSArtem Bityutskiy 	spin_unlock(&dbg_lock);
5751e51764aSArtem Bityutskiy }
5761e51764aSArtem Bityutskiy 
577edf6be24SArtem Bityutskiy void ubifs_dump_budg(struct ubifs_info *c, const struct ubifs_budg_info *bi)
5781e51764aSArtem Bityutskiy {
5791e51764aSArtem Bityutskiy 	int i;
5801e51764aSArtem Bityutskiy 	struct rb_node *rb;
5811e51764aSArtem Bityutskiy 	struct ubifs_bud *bud;
5821e51764aSArtem Bityutskiy 	struct ubifs_gced_idx_leb *idx_gc;
58321a60258SArtem Bityutskiy 	long long available, outstanding, free;
5841e51764aSArtem Bityutskiy 
5858ff83089SArtem Bityutskiy 	spin_lock(&c->space_lock);
5861e51764aSArtem Bityutskiy 	spin_lock(&dbg_lock);
5876b38d03fSArtem Bityutskiy 	pr_err("(pid %d) Budgeting info: data budget sum %lld, total budget sum %lld\n",
58879fda517SArtem Bityutskiy 	       current->pid, bi->data_growth + bi->dd_growth,
589f1bd66afSArtem Bityutskiy 	       bi->data_growth + bi->dd_growth + bi->idx_growth);
5906b38d03fSArtem Bityutskiy 	pr_err("\tbudg_data_growth %lld, budg_dd_growth %lld, budg_idx_growth %lld\n",
59179fda517SArtem Bityutskiy 	       bi->data_growth, bi->dd_growth, bi->idx_growth);
5926b38d03fSArtem Bityutskiy 	pr_err("\tmin_idx_lebs %d, old_idx_sz %llu, uncommitted_idx %lld\n",
59379fda517SArtem Bityutskiy 	       bi->min_idx_lebs, bi->old_idx_sz, bi->uncommitted_idx);
5946b38d03fSArtem Bityutskiy 	pr_err("\tpage_budget %d, inode_budget %d, dent_budget %d\n",
595f1bd66afSArtem Bityutskiy 	       bi->page_budget, bi->inode_budget, bi->dent_budget);
5966b38d03fSArtem Bityutskiy 	pr_err("\tnospace %u, nospace_rp %u\n", bi->nospace, bi->nospace_rp);
5976b38d03fSArtem Bityutskiy 	pr_err("\tdark_wm %d, dead_wm %d, max_idx_node_sz %d\n",
5988c3067e4SArtem Bityutskiy 	       c->dark_wm, c->dead_wm, c->max_idx_node_sz);
599f1bd66afSArtem Bityutskiy 
600f1bd66afSArtem Bityutskiy 	if (bi != &c->bi)
601f1bd66afSArtem Bityutskiy 		/*
602f1bd66afSArtem Bityutskiy 		 * If we are dumping saved budgeting data, do not print
603f1bd66afSArtem Bityutskiy 		 * additional information which is about the current state, not
604f1bd66afSArtem Bityutskiy 		 * the old one which corresponded to the saved budgeting data.
605f1bd66afSArtem Bityutskiy 		 */
606f1bd66afSArtem Bityutskiy 		goto out_unlock;
607f1bd66afSArtem Bityutskiy 
6086b38d03fSArtem Bityutskiy 	pr_err("\tfreeable_cnt %d, calc_idx_sz %lld, idx_gc_cnt %d\n",
6098c3067e4SArtem Bityutskiy 	       c->freeable_cnt, c->calc_idx_sz, c->idx_gc_cnt);
6106b38d03fSArtem Bityutskiy 	pr_err("\tdirty_pg_cnt %ld, dirty_zn_cnt %ld, clean_zn_cnt %ld\n",
61179fda517SArtem Bityutskiy 	       atomic_long_read(&c->dirty_pg_cnt),
6121e51764aSArtem Bityutskiy 	       atomic_long_read(&c->dirty_zn_cnt),
6131e51764aSArtem Bityutskiy 	       atomic_long_read(&c->clean_zn_cnt));
6146b38d03fSArtem Bityutskiy 	pr_err("\tgc_lnum %d, ihead_lnum %d\n", c->gc_lnum, c->ihead_lnum);
615f1bd66afSArtem Bityutskiy 
61684abf972SArtem Bityutskiy 	/* If we are in R/O mode, journal heads do not exist */
61784abf972SArtem Bityutskiy 	if (c->jheads)
6181e51764aSArtem Bityutskiy 		for (i = 0; i < c->jhead_cnt; i++)
6196b38d03fSArtem Bityutskiy 			pr_err("\tjhead %s\t LEB %d\n",
62077a7ae58SArtem Bityutskiy 			       dbg_jhead(c->jheads[i].wbuf.jhead),
62177a7ae58SArtem Bityutskiy 			       c->jheads[i].wbuf.lnum);
6221e51764aSArtem Bityutskiy 	for (rb = rb_first(&c->buds); rb; rb = rb_next(rb)) {
6231e51764aSArtem Bityutskiy 		bud = rb_entry(rb, struct ubifs_bud, rb);
6246b38d03fSArtem Bityutskiy 		pr_err("\tbud LEB %d\n", bud->lnum);
6251e51764aSArtem Bityutskiy 	}
6261e51764aSArtem Bityutskiy 	list_for_each_entry(bud, &c->old_buds, list)
6276b38d03fSArtem Bityutskiy 		pr_err("\told bud LEB %d\n", bud->lnum);
6281e51764aSArtem Bityutskiy 	list_for_each_entry(idx_gc, &c->idx_gc, list)
6296b38d03fSArtem Bityutskiy 		pr_err("\tGC'ed idx LEB %d unmap %d\n",
6301e51764aSArtem Bityutskiy 		       idx_gc->lnum, idx_gc->unmap);
6316b38d03fSArtem Bityutskiy 	pr_err("\tcommit state %d\n", c->cmt_state);
63221a60258SArtem Bityutskiy 
63321a60258SArtem Bityutskiy 	/* Print budgeting predictions */
634b137545cSArtem Bityutskiy 	available = ubifs_calc_available(c, c->bi.min_idx_lebs);
635b137545cSArtem Bityutskiy 	outstanding = c->bi.data_growth + c->bi.dd_growth;
63684abf972SArtem Bityutskiy 	free = ubifs_get_free_space_nolock(c);
6376b38d03fSArtem Bityutskiy 	pr_err("Budgeting predictions:\n");
6386b38d03fSArtem Bityutskiy 	pr_err("\tavailable: %lld, outstanding %lld, free %lld\n",
63921a60258SArtem Bityutskiy 	       available, outstanding, free);
640f1bd66afSArtem Bityutskiy out_unlock:
6411e51764aSArtem Bityutskiy 	spin_unlock(&dbg_lock);
6428ff83089SArtem Bityutskiy 	spin_unlock(&c->space_lock);
6431e51764aSArtem Bityutskiy }
6441e51764aSArtem Bityutskiy 
645edf6be24SArtem Bityutskiy void ubifs_dump_lprop(const struct ubifs_info *c, const struct ubifs_lprops *lp)
6461e51764aSArtem Bityutskiy {
647be9e62a7SArtem Bityutskiy 	int i, spc, dark = 0, dead = 0;
648be9e62a7SArtem Bityutskiy 	struct rb_node *rb;
649be9e62a7SArtem Bityutskiy 	struct ubifs_bud *bud;
650be9e62a7SArtem Bityutskiy 
651be9e62a7SArtem Bityutskiy 	spc = lp->free + lp->dirty;
652be9e62a7SArtem Bityutskiy 	if (spc < c->dead_wm)
653be9e62a7SArtem Bityutskiy 		dead = spc;
654be9e62a7SArtem Bityutskiy 	else
655be9e62a7SArtem Bityutskiy 		dark = ubifs_calc_dark(c, spc);
656be9e62a7SArtem Bityutskiy 
657be9e62a7SArtem Bityutskiy 	if (lp->flags & LPROPS_INDEX)
6586b38d03fSArtem Bityutskiy 		pr_err("LEB %-7d free %-8d dirty %-8d used %-8d free + dirty %-8d flags %#x (",
65979fda517SArtem Bityutskiy 		       lp->lnum, lp->free, lp->dirty, c->leb_size - spc, spc,
66079fda517SArtem Bityutskiy 		       lp->flags);
661be9e62a7SArtem Bityutskiy 	else
6626b38d03fSArtem Bityutskiy 		pr_err("LEB %-7d free %-8d dirty %-8d used %-8d free + dirty %-8d dark %-4d dead %-4d nodes fit %-3d flags %#-4x (",
66379fda517SArtem Bityutskiy 		       lp->lnum, lp->free, lp->dirty, c->leb_size - spc, spc,
66479fda517SArtem Bityutskiy 		       dark, dead, (int)(spc / UBIFS_MAX_NODE_SZ), lp->flags);
665be9e62a7SArtem Bityutskiy 
666be9e62a7SArtem Bityutskiy 	if (lp->flags & LPROPS_TAKEN) {
667be9e62a7SArtem Bityutskiy 		if (lp->flags & LPROPS_INDEX)
6686b38d03fSArtem Bityutskiy 			pr_cont("index, taken");
669be9e62a7SArtem Bityutskiy 		else
6706b38d03fSArtem Bityutskiy 			pr_cont("taken");
671be9e62a7SArtem Bityutskiy 	} else {
672be9e62a7SArtem Bityutskiy 		const char *s;
673be9e62a7SArtem Bityutskiy 
674be9e62a7SArtem Bityutskiy 		if (lp->flags & LPROPS_INDEX) {
675be9e62a7SArtem Bityutskiy 			switch (lp->flags & LPROPS_CAT_MASK) {
676be9e62a7SArtem Bityutskiy 			case LPROPS_DIRTY_IDX:
677be9e62a7SArtem Bityutskiy 				s = "dirty index";
678be9e62a7SArtem Bityutskiy 				break;
679be9e62a7SArtem Bityutskiy 			case LPROPS_FRDI_IDX:
680be9e62a7SArtem Bityutskiy 				s = "freeable index";
681be9e62a7SArtem Bityutskiy 				break;
682be9e62a7SArtem Bityutskiy 			default:
683be9e62a7SArtem Bityutskiy 				s = "index";
684be9e62a7SArtem Bityutskiy 			}
685be9e62a7SArtem Bityutskiy 		} else {
686be9e62a7SArtem Bityutskiy 			switch (lp->flags & LPROPS_CAT_MASK) {
687be9e62a7SArtem Bityutskiy 			case LPROPS_UNCAT:
688be9e62a7SArtem Bityutskiy 				s = "not categorized";
689be9e62a7SArtem Bityutskiy 				break;
690be9e62a7SArtem Bityutskiy 			case LPROPS_DIRTY:
691be9e62a7SArtem Bityutskiy 				s = "dirty";
692be9e62a7SArtem Bityutskiy 				break;
693be9e62a7SArtem Bityutskiy 			case LPROPS_FREE:
694be9e62a7SArtem Bityutskiy 				s = "free";
695be9e62a7SArtem Bityutskiy 				break;
696be9e62a7SArtem Bityutskiy 			case LPROPS_EMPTY:
697be9e62a7SArtem Bityutskiy 				s = "empty";
698be9e62a7SArtem Bityutskiy 				break;
699be9e62a7SArtem Bityutskiy 			case LPROPS_FREEABLE:
700be9e62a7SArtem Bityutskiy 				s = "freeable";
701be9e62a7SArtem Bityutskiy 				break;
702be9e62a7SArtem Bityutskiy 			default:
703be9e62a7SArtem Bityutskiy 				s = NULL;
704be9e62a7SArtem Bityutskiy 				break;
705be9e62a7SArtem Bityutskiy 			}
706be9e62a7SArtem Bityutskiy 		}
7076b38d03fSArtem Bityutskiy 		pr_cont("%s", s);
708be9e62a7SArtem Bityutskiy 	}
709be9e62a7SArtem Bityutskiy 
710be9e62a7SArtem Bityutskiy 	for (rb = rb_first((struct rb_root *)&c->buds); rb; rb = rb_next(rb)) {
711be9e62a7SArtem Bityutskiy 		bud = rb_entry(rb, struct ubifs_bud, rb);
712be9e62a7SArtem Bityutskiy 		if (bud->lnum == lp->lnum) {
713be9e62a7SArtem Bityutskiy 			int head = 0;
714be9e62a7SArtem Bityutskiy 			for (i = 0; i < c->jhead_cnt; i++) {
7151321657dSArtem Bityutskiy 				/*
7161321657dSArtem Bityutskiy 				 * Note, if we are in R/O mode or in the middle
7171321657dSArtem Bityutskiy 				 * of mounting/re-mounting, the write-buffers do
7181321657dSArtem Bityutskiy 				 * not exist.
7191321657dSArtem Bityutskiy 				 */
7201321657dSArtem Bityutskiy 				if (c->jheads &&
7211321657dSArtem Bityutskiy 				    lp->lnum == c->jheads[i].wbuf.lnum) {
7226b38d03fSArtem Bityutskiy 					pr_cont(", jhead %s", dbg_jhead(i));
723be9e62a7SArtem Bityutskiy 					head = 1;
724be9e62a7SArtem Bityutskiy 				}
725be9e62a7SArtem Bityutskiy 			}
726be9e62a7SArtem Bityutskiy 			if (!head)
7276b38d03fSArtem Bityutskiy 				pr_cont(", bud of jhead %s",
728be9e62a7SArtem Bityutskiy 				       dbg_jhead(bud->jhead));
729be9e62a7SArtem Bityutskiy 		}
730be9e62a7SArtem Bityutskiy 	}
731be9e62a7SArtem Bityutskiy 	if (lp->lnum == c->gc_lnum)
7326b38d03fSArtem Bityutskiy 		pr_cont(", GC LEB");
7336b38d03fSArtem Bityutskiy 	pr_cont(")\n");
7341e51764aSArtem Bityutskiy }
7351e51764aSArtem Bityutskiy 
736edf6be24SArtem Bityutskiy void ubifs_dump_lprops(struct ubifs_info *c)
7371e51764aSArtem Bityutskiy {
7381e51764aSArtem Bityutskiy 	int lnum, err;
7391e51764aSArtem Bityutskiy 	struct ubifs_lprops lp;
7401e51764aSArtem Bityutskiy 	struct ubifs_lp_stats lst;
7411e51764aSArtem Bityutskiy 
7426b38d03fSArtem Bityutskiy 	pr_err("(pid %d) start dumping LEB properties\n", current->pid);
7431e51764aSArtem Bityutskiy 	ubifs_get_lp_stats(c, &lst);
744edf6be24SArtem Bityutskiy 	ubifs_dump_lstats(&lst);
7451e51764aSArtem Bityutskiy 
7461e51764aSArtem Bityutskiy 	for (lnum = c->main_first; lnum < c->leb_cnt; lnum++) {
7471e51764aSArtem Bityutskiy 		err = ubifs_read_one_lp(c, lnum, &lp);
748dac36981Shujianyang 		if (err) {
749235c362bSSheng Yong 			ubifs_err(c, "cannot read lprops for LEB %d", lnum);
750dac36981Shujianyang 			continue;
751dac36981Shujianyang 		}
7521e51764aSArtem Bityutskiy 
753edf6be24SArtem Bityutskiy 		ubifs_dump_lprop(c, &lp);
7541e51764aSArtem Bityutskiy 	}
7556b38d03fSArtem Bityutskiy 	pr_err("(pid %d) finish dumping LEB properties\n", current->pid);
7561e51764aSArtem Bityutskiy }
7571e51764aSArtem Bityutskiy 
758edf6be24SArtem Bityutskiy void ubifs_dump_lpt_info(struct ubifs_info *c)
75973944a6dSAdrian Hunter {
76073944a6dSAdrian Hunter 	int i;
76173944a6dSAdrian Hunter 
76273944a6dSAdrian Hunter 	spin_lock(&dbg_lock);
7636b38d03fSArtem Bityutskiy 	pr_err("(pid %d) dumping LPT information\n", current->pid);
7646b38d03fSArtem Bityutskiy 	pr_err("\tlpt_sz:        %lld\n", c->lpt_sz);
7656b38d03fSArtem Bityutskiy 	pr_err("\tpnode_sz:      %d\n", c->pnode_sz);
7666b38d03fSArtem Bityutskiy 	pr_err("\tnnode_sz:      %d\n", c->nnode_sz);
7676b38d03fSArtem Bityutskiy 	pr_err("\tltab_sz:       %d\n", c->ltab_sz);
7686b38d03fSArtem Bityutskiy 	pr_err("\tlsave_sz:      %d\n", c->lsave_sz);
7696b38d03fSArtem Bityutskiy 	pr_err("\tbig_lpt:       %d\n", c->big_lpt);
7706b38d03fSArtem Bityutskiy 	pr_err("\tlpt_hght:      %d\n", c->lpt_hght);
7716b38d03fSArtem Bityutskiy 	pr_err("\tpnode_cnt:     %d\n", c->pnode_cnt);
7726b38d03fSArtem Bityutskiy 	pr_err("\tnnode_cnt:     %d\n", c->nnode_cnt);
7736b38d03fSArtem Bityutskiy 	pr_err("\tdirty_pn_cnt:  %d\n", c->dirty_pn_cnt);
7746b38d03fSArtem Bityutskiy 	pr_err("\tdirty_nn_cnt:  %d\n", c->dirty_nn_cnt);
7756b38d03fSArtem Bityutskiy 	pr_err("\tlsave_cnt:     %d\n", c->lsave_cnt);
7766b38d03fSArtem Bityutskiy 	pr_err("\tspace_bits:    %d\n", c->space_bits);
7776b38d03fSArtem Bityutskiy 	pr_err("\tlpt_lnum_bits: %d\n", c->lpt_lnum_bits);
7786b38d03fSArtem Bityutskiy 	pr_err("\tlpt_offs_bits: %d\n", c->lpt_offs_bits);
7796b38d03fSArtem Bityutskiy 	pr_err("\tlpt_spc_bits:  %d\n", c->lpt_spc_bits);
7806b38d03fSArtem Bityutskiy 	pr_err("\tpcnt_bits:     %d\n", c->pcnt_bits);
7816b38d03fSArtem Bityutskiy 	pr_err("\tlnum_bits:     %d\n", c->lnum_bits);
7826b38d03fSArtem Bityutskiy 	pr_err("\tLPT root is at %d:%d\n", c->lpt_lnum, c->lpt_offs);
7836b38d03fSArtem Bityutskiy 	pr_err("\tLPT head is at %d:%d\n",
78473944a6dSAdrian Hunter 	       c->nhead_lnum, c->nhead_offs);
7856b38d03fSArtem Bityutskiy 	pr_err("\tLPT ltab is at %d:%d\n", c->ltab_lnum, c->ltab_offs);
78673944a6dSAdrian Hunter 	if (c->big_lpt)
7876b38d03fSArtem Bityutskiy 		pr_err("\tLPT lsave is at %d:%d\n",
78873944a6dSAdrian Hunter 		       c->lsave_lnum, c->lsave_offs);
78973944a6dSAdrian Hunter 	for (i = 0; i < c->lpt_lebs; i++)
7906b38d03fSArtem Bityutskiy 		pr_err("\tLPT LEB %d free %d dirty %d tgc %d cmt %d\n",
79179fda517SArtem Bityutskiy 		       i + c->lpt_first, c->ltab[i].free, c->ltab[i].dirty,
79279fda517SArtem Bityutskiy 		       c->ltab[i].tgc, c->ltab[i].cmt);
79373944a6dSAdrian Hunter 	spin_unlock(&dbg_lock);
79473944a6dSAdrian Hunter }
79573944a6dSAdrian Hunter 
796edf6be24SArtem Bityutskiy void ubifs_dump_sleb(const struct ubifs_info *c,
797d37854cfSArtem Bityutskiy 		     const struct ubifs_scan_leb *sleb, int offs)
798d37854cfSArtem Bityutskiy {
799d37854cfSArtem Bityutskiy 	struct ubifs_scan_node *snod;
800d37854cfSArtem Bityutskiy 
8016b38d03fSArtem Bityutskiy 	pr_err("(pid %d) start dumping scanned data from LEB %d:%d\n",
802d37854cfSArtem Bityutskiy 	       current->pid, sleb->lnum, offs);
803d37854cfSArtem Bityutskiy 
804d37854cfSArtem Bityutskiy 	list_for_each_entry(snod, &sleb->nodes, list) {
805d37854cfSArtem Bityutskiy 		cond_resched();
8066b38d03fSArtem Bityutskiy 		pr_err("Dumping node at LEB %d:%d len %d\n",
80779fda517SArtem Bityutskiy 		       sleb->lnum, snod->offs, snod->len);
808edf6be24SArtem Bityutskiy 		ubifs_dump_node(c, snod->node);
809d37854cfSArtem Bityutskiy 	}
810d37854cfSArtem Bityutskiy }
811d37854cfSArtem Bityutskiy 
812edf6be24SArtem Bityutskiy void ubifs_dump_leb(const struct ubifs_info *c, int lnum)
8131e51764aSArtem Bityutskiy {
8141e51764aSArtem Bityutskiy 	struct ubifs_scan_leb *sleb;
8151e51764aSArtem Bityutskiy 	struct ubifs_scan_node *snod;
81673d9aec3SArtem Bityutskiy 	void *buf;
8171e51764aSArtem Bityutskiy 
8186b38d03fSArtem Bityutskiy 	pr_err("(pid %d) start dumping LEB %d\n", current->pid, lnum);
81973d9aec3SArtem Bityutskiy 
820fc5e58c0SArtem Bityutskiy 	buf = __vmalloc(c->leb_size, GFP_NOFS, PAGE_KERNEL);
82173d9aec3SArtem Bityutskiy 	if (!buf) {
822235c362bSSheng Yong 		ubifs_err(c, "cannot allocate memory for dumping LEB %d", lnum);
82373d9aec3SArtem Bityutskiy 		return;
82473d9aec3SArtem Bityutskiy 	}
82573d9aec3SArtem Bityutskiy 
82673d9aec3SArtem Bityutskiy 	sleb = ubifs_scan(c, lnum, 0, buf, 0);
8271e51764aSArtem Bityutskiy 	if (IS_ERR(sleb)) {
828235c362bSSheng Yong 		ubifs_err(c, "scan error %d", (int)PTR_ERR(sleb));
82973d9aec3SArtem Bityutskiy 		goto out;
8301e51764aSArtem Bityutskiy 	}
8311e51764aSArtem Bityutskiy 
8326b38d03fSArtem Bityutskiy 	pr_err("LEB %d has %d nodes ending at %d\n", lnum,
8331e51764aSArtem Bityutskiy 	       sleb->nodes_cnt, sleb->endpt);
8341e51764aSArtem Bityutskiy 
8351e51764aSArtem Bityutskiy 	list_for_each_entry(snod, &sleb->nodes, list) {
8361e51764aSArtem Bityutskiy 		cond_resched();
8376b38d03fSArtem Bityutskiy 		pr_err("Dumping node at LEB %d:%d len %d\n", lnum,
8381e51764aSArtem Bityutskiy 		       snod->offs, snod->len);
839edf6be24SArtem Bityutskiy 		ubifs_dump_node(c, snod->node);
8401e51764aSArtem Bityutskiy 	}
8411e51764aSArtem Bityutskiy 
8426b38d03fSArtem Bityutskiy 	pr_err("(pid %d) finish dumping LEB %d\n", current->pid, lnum);
8431e51764aSArtem Bityutskiy 	ubifs_scan_destroy(sleb);
84473d9aec3SArtem Bityutskiy 
84573d9aec3SArtem Bityutskiy out:
84673d9aec3SArtem Bityutskiy 	vfree(buf);
8471e51764aSArtem Bityutskiy 	return;
8481e51764aSArtem Bityutskiy }
8491e51764aSArtem Bityutskiy 
850edf6be24SArtem Bityutskiy void ubifs_dump_znode(const struct ubifs_info *c,
8511e51764aSArtem Bityutskiy 		      const struct ubifs_znode *znode)
8521e51764aSArtem Bityutskiy {
8531e51764aSArtem Bityutskiy 	int n;
8541e51764aSArtem Bityutskiy 	const struct ubifs_zbranch *zbr;
855515315a1SArtem Bityutskiy 	char key_buf[DBG_KEY_BUF_LEN];
8561e51764aSArtem Bityutskiy 
8571e51764aSArtem Bityutskiy 	spin_lock(&dbg_lock);
8581e51764aSArtem Bityutskiy 	if (znode->parent)
8591e51764aSArtem Bityutskiy 		zbr = &znode->parent->zbranch[znode->iip];
8601e51764aSArtem Bityutskiy 	else
8611e51764aSArtem Bityutskiy 		zbr = &c->zroot;
8621e51764aSArtem Bityutskiy 
8636b38d03fSArtem Bityutskiy 	pr_err("znode %p, LEB %d:%d len %d parent %p iip %d level %d child_cnt %d flags %lx\n",
86479fda517SArtem Bityutskiy 	       znode, zbr->lnum, zbr->offs, zbr->len, znode->parent, znode->iip,
86579fda517SArtem Bityutskiy 	       znode->level, znode->child_cnt, znode->flags);
8661e51764aSArtem Bityutskiy 
8671e51764aSArtem Bityutskiy 	if (znode->child_cnt <= 0 || znode->child_cnt > c->fanout) {
8681e51764aSArtem Bityutskiy 		spin_unlock(&dbg_lock);
8691e51764aSArtem Bityutskiy 		return;
8701e51764aSArtem Bityutskiy 	}
8711e51764aSArtem Bityutskiy 
8726b38d03fSArtem Bityutskiy 	pr_err("zbranches:\n");
8731e51764aSArtem Bityutskiy 	for (n = 0; n < znode->child_cnt; n++) {
8741e51764aSArtem Bityutskiy 		zbr = &znode->zbranch[n];
8751e51764aSArtem Bityutskiy 		if (znode->level > 0)
8766b38d03fSArtem Bityutskiy 			pr_err("\t%d: znode %p LEB %d:%d len %d key %s\n",
87779fda517SArtem Bityutskiy 			       n, zbr->znode, zbr->lnum, zbr->offs, zbr->len,
87879fda517SArtem Bityutskiy 			       dbg_snprintf_key(c, &zbr->key, key_buf,
879515315a1SArtem Bityutskiy 						DBG_KEY_BUF_LEN));
8801e51764aSArtem Bityutskiy 		else
8816b38d03fSArtem Bityutskiy 			pr_err("\t%d: LNC %p LEB %d:%d len %d key %s\n",
88279fda517SArtem Bityutskiy 			       n, zbr->znode, zbr->lnum, zbr->offs, zbr->len,
88379fda517SArtem Bityutskiy 			       dbg_snprintf_key(c, &zbr->key, key_buf,
884515315a1SArtem Bityutskiy 						DBG_KEY_BUF_LEN));
8851e51764aSArtem Bityutskiy 	}
8861e51764aSArtem Bityutskiy 	spin_unlock(&dbg_lock);
8871e51764aSArtem Bityutskiy }
8881e51764aSArtem Bityutskiy 
889edf6be24SArtem Bityutskiy void ubifs_dump_heap(struct ubifs_info *c, struct ubifs_lpt_heap *heap, int cat)
8901e51764aSArtem Bityutskiy {
8911e51764aSArtem Bityutskiy 	int i;
8921e51764aSArtem Bityutskiy 
8936b38d03fSArtem Bityutskiy 	pr_err("(pid %d) start dumping heap cat %d (%d elements)\n",
8941de94159SArtem Bityutskiy 	       current->pid, cat, heap->cnt);
8951e51764aSArtem Bityutskiy 	for (i = 0; i < heap->cnt; i++) {
8961e51764aSArtem Bityutskiy 		struct ubifs_lprops *lprops = heap->arr[i];
8971e51764aSArtem Bityutskiy 
8986b38d03fSArtem Bityutskiy 		pr_err("\t%d. LEB %d hpos %d free %d dirty %d flags %d\n",
89979fda517SArtem Bityutskiy 		       i, lprops->lnum, lprops->hpos, lprops->free,
90079fda517SArtem Bityutskiy 		       lprops->dirty, lprops->flags);
9011e51764aSArtem Bityutskiy 	}
9026b38d03fSArtem Bityutskiy 	pr_err("(pid %d) finish dumping heap\n", current->pid);
9031e51764aSArtem Bityutskiy }
9041e51764aSArtem Bityutskiy 
905edf6be24SArtem Bityutskiy void ubifs_dump_pnode(struct ubifs_info *c, struct ubifs_pnode *pnode,
9061e51764aSArtem Bityutskiy 		      struct ubifs_nnode *parent, int iip)
9071e51764aSArtem Bityutskiy {
9081e51764aSArtem Bityutskiy 	int i;
9091e51764aSArtem Bityutskiy 
9106b38d03fSArtem Bityutskiy 	pr_err("(pid %d) dumping pnode:\n", current->pid);
9116b38d03fSArtem Bityutskiy 	pr_err("\taddress %zx parent %zx cnext %zx\n",
9121e51764aSArtem Bityutskiy 	       (size_t)pnode, (size_t)parent, (size_t)pnode->cnext);
9136b38d03fSArtem Bityutskiy 	pr_err("\tflags %lu iip %d level %d num %d\n",
9141e51764aSArtem Bityutskiy 	       pnode->flags, iip, pnode->level, pnode->num);
9151e51764aSArtem Bityutskiy 	for (i = 0; i < UBIFS_LPT_FANOUT; i++) {
9161e51764aSArtem Bityutskiy 		struct ubifs_lprops *lp = &pnode->lprops[i];
9171e51764aSArtem Bityutskiy 
9186b38d03fSArtem Bityutskiy 		pr_err("\t%d: free %d dirty %d flags %d lnum %d\n",
9191e51764aSArtem Bityutskiy 		       i, lp->free, lp->dirty, lp->flags, lp->lnum);
9201e51764aSArtem Bityutskiy 	}
9211e51764aSArtem Bityutskiy }
9221e51764aSArtem Bityutskiy 
923edf6be24SArtem Bityutskiy void ubifs_dump_tnc(struct ubifs_info *c)
9241e51764aSArtem Bityutskiy {
9251e51764aSArtem Bityutskiy 	struct ubifs_znode *znode;
9261e51764aSArtem Bityutskiy 	int level;
9271e51764aSArtem Bityutskiy 
9286b38d03fSArtem Bityutskiy 	pr_err("\n");
9296b38d03fSArtem Bityutskiy 	pr_err("(pid %d) start dumping TNC tree\n", current->pid);
9301e51764aSArtem Bityutskiy 	znode = ubifs_tnc_levelorder_next(c->zroot.znode, NULL);
9311e51764aSArtem Bityutskiy 	level = znode->level;
9326b38d03fSArtem Bityutskiy 	pr_err("== Level %d ==\n", level);
9331e51764aSArtem Bityutskiy 	while (znode) {
9341e51764aSArtem Bityutskiy 		if (level != znode->level) {
9351e51764aSArtem Bityutskiy 			level = znode->level;
9366b38d03fSArtem Bityutskiy 			pr_err("== Level %d ==\n", level);
9371e51764aSArtem Bityutskiy 		}
938edf6be24SArtem Bityutskiy 		ubifs_dump_znode(c, znode);
9391e51764aSArtem Bityutskiy 		znode = ubifs_tnc_levelorder_next(c->zroot.znode, znode);
9401e51764aSArtem Bityutskiy 	}
9416b38d03fSArtem Bityutskiy 	pr_err("(pid %d) finish dumping TNC tree\n", current->pid);
9421e51764aSArtem Bityutskiy }
9431e51764aSArtem Bityutskiy 
9441e51764aSArtem Bityutskiy static int dump_znode(struct ubifs_info *c, struct ubifs_znode *znode,
9451e51764aSArtem Bityutskiy 		      void *priv)
9461e51764aSArtem Bityutskiy {
947edf6be24SArtem Bityutskiy 	ubifs_dump_znode(c, znode);
9481e51764aSArtem Bityutskiy 	return 0;
9491e51764aSArtem Bityutskiy }
9501e51764aSArtem Bityutskiy 
9511e51764aSArtem Bityutskiy /**
952edf6be24SArtem Bityutskiy  * ubifs_dump_index - dump the on-flash index.
9531e51764aSArtem Bityutskiy  * @c: UBIFS file-system description object
9541e51764aSArtem Bityutskiy  *
955edf6be24SArtem Bityutskiy  * This function dumps whole UBIFS indexing B-tree, unlike 'ubifs_dump_tnc()'
9561e51764aSArtem Bityutskiy  * which dumps only in-memory znodes and does not read znodes which from flash.
9571e51764aSArtem Bityutskiy  */
958edf6be24SArtem Bityutskiy void ubifs_dump_index(struct ubifs_info *c)
9591e51764aSArtem Bityutskiy {
9601e51764aSArtem Bityutskiy 	dbg_walk_index(c, NULL, dump_znode, NULL);
9611e51764aSArtem Bityutskiy }
9621e51764aSArtem Bityutskiy 
9631e51764aSArtem Bityutskiy /**
96484abf972SArtem Bityutskiy  * dbg_save_space_info - save information about flash space.
96584abf972SArtem Bityutskiy  * @c: UBIFS file-system description object
96684abf972SArtem Bityutskiy  *
96784abf972SArtem Bityutskiy  * This function saves information about UBIFS free space, dirty space, etc, in
96884abf972SArtem Bityutskiy  * order to check it later.
96984abf972SArtem Bityutskiy  */
97084abf972SArtem Bityutskiy void dbg_save_space_info(struct ubifs_info *c)
97184abf972SArtem Bityutskiy {
97284abf972SArtem Bityutskiy 	struct ubifs_debug_info *d = c->dbg;
9737da6443aSArtem Bityutskiy 	int freeable_cnt;
97484abf972SArtem Bityutskiy 
97584abf972SArtem Bityutskiy 	spin_lock(&c->space_lock);
9767da6443aSArtem Bityutskiy 	memcpy(&d->saved_lst, &c->lst, sizeof(struct ubifs_lp_stats));
977f1bd66afSArtem Bityutskiy 	memcpy(&d->saved_bi, &c->bi, sizeof(struct ubifs_budg_info));
978f1bd66afSArtem Bityutskiy 	d->saved_idx_gc_cnt = c->idx_gc_cnt;
9797da6443aSArtem Bityutskiy 
9807da6443aSArtem Bityutskiy 	/*
9817da6443aSArtem Bityutskiy 	 * We use a dirty hack here and zero out @c->freeable_cnt, because it
9827da6443aSArtem Bityutskiy 	 * affects the free space calculations, and UBIFS might not know about
9837da6443aSArtem Bityutskiy 	 * all freeable eraseblocks. Indeed, we know about freeable eraseblocks
9847da6443aSArtem Bityutskiy 	 * only when we read their lprops, and we do this only lazily, upon the
9857da6443aSArtem Bityutskiy 	 * need. So at any given point of time @c->freeable_cnt might be not
9867da6443aSArtem Bityutskiy 	 * exactly accurate.
9877da6443aSArtem Bityutskiy 	 *
9887da6443aSArtem Bityutskiy 	 * Just one example about the issue we hit when we did not zero
9897da6443aSArtem Bityutskiy 	 * @c->freeable_cnt.
9907da6443aSArtem Bityutskiy 	 * 1. The file-system is mounted R/O, c->freeable_cnt is %0. We save the
9917da6443aSArtem Bityutskiy 	 *    amount of free space in @d->saved_free
9927da6443aSArtem Bityutskiy 	 * 2. We re-mount R/W, which makes UBIFS to read the "lsave"
9937da6443aSArtem Bityutskiy 	 *    information from flash, where we cache LEBs from various
9947da6443aSArtem Bityutskiy 	 *    categories ('ubifs_remount_fs()' -> 'ubifs_lpt_init()'
9957da6443aSArtem Bityutskiy 	 *    -> 'lpt_init_wr()' -> 'read_lsave()' -> 'ubifs_lpt_lookup()'
9967da6443aSArtem Bityutskiy 	 *    -> 'ubifs_get_pnode()' -> 'update_cats()'
9977da6443aSArtem Bityutskiy 	 *    -> 'ubifs_add_to_cat()').
9987da6443aSArtem Bityutskiy 	 * 3. Lsave contains a freeable eraseblock, and @c->freeable_cnt
9997da6443aSArtem Bityutskiy 	 *    becomes %1.
10007da6443aSArtem Bityutskiy 	 * 4. We calculate the amount of free space when the re-mount is
10017da6443aSArtem Bityutskiy 	 *    finished in 'dbg_check_space_info()' and it does not match
10027da6443aSArtem Bityutskiy 	 *    @d->saved_free.
10037da6443aSArtem Bityutskiy 	 */
10047da6443aSArtem Bityutskiy 	freeable_cnt = c->freeable_cnt;
10057da6443aSArtem Bityutskiy 	c->freeable_cnt = 0;
100684abf972SArtem Bityutskiy 	d->saved_free = ubifs_get_free_space_nolock(c);
10077da6443aSArtem Bityutskiy 	c->freeable_cnt = freeable_cnt;
100884abf972SArtem Bityutskiy 	spin_unlock(&c->space_lock);
100984abf972SArtem Bityutskiy }
101084abf972SArtem Bityutskiy 
101184abf972SArtem Bityutskiy /**
101284abf972SArtem Bityutskiy  * dbg_check_space_info - check flash space information.
101384abf972SArtem Bityutskiy  * @c: UBIFS file-system description object
101484abf972SArtem Bityutskiy  *
101584abf972SArtem Bityutskiy  * This function compares current flash space information with the information
101684abf972SArtem Bityutskiy  * which was saved when the 'dbg_save_space_info()' function was called.
101784abf972SArtem Bityutskiy  * Returns zero if the information has not changed, and %-EINVAL it it has
101884abf972SArtem Bityutskiy  * changed.
101984abf972SArtem Bityutskiy  */
102084abf972SArtem Bityutskiy int dbg_check_space_info(struct ubifs_info *c)
102184abf972SArtem Bityutskiy {
102284abf972SArtem Bityutskiy 	struct ubifs_debug_info *d = c->dbg;
102384abf972SArtem Bityutskiy 	struct ubifs_lp_stats lst;
10247da6443aSArtem Bityutskiy 	long long free;
10257da6443aSArtem Bityutskiy 	int freeable_cnt;
102684abf972SArtem Bityutskiy 
102784abf972SArtem Bityutskiy 	spin_lock(&c->space_lock);
10287da6443aSArtem Bityutskiy 	freeable_cnt = c->freeable_cnt;
10297da6443aSArtem Bityutskiy 	c->freeable_cnt = 0;
10307da6443aSArtem Bityutskiy 	free = ubifs_get_free_space_nolock(c);
10317da6443aSArtem Bityutskiy 	c->freeable_cnt = freeable_cnt;
103284abf972SArtem Bityutskiy 	spin_unlock(&c->space_lock);
103384abf972SArtem Bityutskiy 
103484abf972SArtem Bityutskiy 	if (free != d->saved_free) {
1035235c362bSSheng Yong 		ubifs_err(c, "free space changed from %lld to %lld",
103684abf972SArtem Bityutskiy 			  d->saved_free, free);
103784abf972SArtem Bityutskiy 		goto out;
103884abf972SArtem Bityutskiy 	}
103984abf972SArtem Bityutskiy 
104084abf972SArtem Bityutskiy 	return 0;
104184abf972SArtem Bityutskiy 
104284abf972SArtem Bityutskiy out:
1043235c362bSSheng Yong 	ubifs_msg(c, "saved lprops statistics dump");
1044edf6be24SArtem Bityutskiy 	ubifs_dump_lstats(&d->saved_lst);
1045235c362bSSheng Yong 	ubifs_msg(c, "saved budgeting info dump");
1046edf6be24SArtem Bityutskiy 	ubifs_dump_budg(c, &d->saved_bi);
1047235c362bSSheng Yong 	ubifs_msg(c, "saved idx_gc_cnt %d", d->saved_idx_gc_cnt);
1048235c362bSSheng Yong 	ubifs_msg(c, "current lprops statistics dump");
1049f1bd66afSArtem Bityutskiy 	ubifs_get_lp_stats(c, &lst);
1050edf6be24SArtem Bityutskiy 	ubifs_dump_lstats(&lst);
1051235c362bSSheng Yong 	ubifs_msg(c, "current budgeting info dump");
1052edf6be24SArtem Bityutskiy 	ubifs_dump_budg(c, &c->bi);
105384abf972SArtem Bityutskiy 	dump_stack();
105484abf972SArtem Bityutskiy 	return -EINVAL;
105584abf972SArtem Bityutskiy }
105684abf972SArtem Bityutskiy 
105784abf972SArtem Bityutskiy /**
10581e51764aSArtem Bityutskiy  * dbg_check_synced_i_size - check synchronized inode size.
1059d808efb4SArtem Bityutskiy  * @c: UBIFS file-system description object
10601e51764aSArtem Bityutskiy  * @inode: inode to check
10611e51764aSArtem Bityutskiy  *
10621e51764aSArtem Bityutskiy  * If inode is clean, synchronized inode size has to be equivalent to current
10631e51764aSArtem Bityutskiy  * inode size. This function has to be called only for locked inodes (@i_mutex
10641e51764aSArtem Bityutskiy  * has to be locked). Returns %0 if synchronized inode size if correct, and
10651e51764aSArtem Bityutskiy  * %-EINVAL if not.
10661e51764aSArtem Bityutskiy  */
1067d808efb4SArtem Bityutskiy int dbg_check_synced_i_size(const struct ubifs_info *c, struct inode *inode)
10681e51764aSArtem Bityutskiy {
10691e51764aSArtem Bityutskiy 	int err = 0;
10701e51764aSArtem Bityutskiy 	struct ubifs_inode *ui = ubifs_inode(inode);
10711e51764aSArtem Bityutskiy 
10722b1844a8SArtem Bityutskiy 	if (!dbg_is_chk_gen(c))
10731e51764aSArtem Bityutskiy 		return 0;
10741e51764aSArtem Bityutskiy 	if (!S_ISREG(inode->i_mode))
10751e51764aSArtem Bityutskiy 		return 0;
10761e51764aSArtem Bityutskiy 
10771e51764aSArtem Bityutskiy 	mutex_lock(&ui->ui_mutex);
10781e51764aSArtem Bityutskiy 	spin_lock(&ui->ui_lock);
10791e51764aSArtem Bityutskiy 	if (ui->ui_size != ui->synced_i_size && !ui->dirty) {
1080235c362bSSheng Yong 		ubifs_err(c, "ui_size is %lld, synced_i_size is %lld, but inode is clean",
108179fda517SArtem Bityutskiy 			  ui->ui_size, ui->synced_i_size);
1082235c362bSSheng Yong 		ubifs_err(c, "i_ino %lu, i_mode %#x, i_size %lld", inode->i_ino,
10831e51764aSArtem Bityutskiy 			  inode->i_mode, i_size_read(inode));
10847c46d0aeSArtem Bityutskiy 		dump_stack();
10851e51764aSArtem Bityutskiy 		err = -EINVAL;
10861e51764aSArtem Bityutskiy 	}
10871e51764aSArtem Bityutskiy 	spin_unlock(&ui->ui_lock);
10881e51764aSArtem Bityutskiy 	mutex_unlock(&ui->ui_mutex);
10891e51764aSArtem Bityutskiy 	return err;
10901e51764aSArtem Bityutskiy }
10911e51764aSArtem Bityutskiy 
10921e51764aSArtem Bityutskiy /*
10931e51764aSArtem Bityutskiy  * dbg_check_dir - check directory inode size and link count.
10941e51764aSArtem Bityutskiy  * @c: UBIFS file-system description object
10951e51764aSArtem Bityutskiy  * @dir: the directory to calculate size for
10961e51764aSArtem Bityutskiy  * @size: the result is returned here
10971e51764aSArtem Bityutskiy  *
10981e51764aSArtem Bityutskiy  * This function makes sure that directory size and link count are correct.
10991e51764aSArtem Bityutskiy  * Returns zero in case of success and a negative error code in case of
11001e51764aSArtem Bityutskiy  * failure.
11011e51764aSArtem Bityutskiy  *
11021e51764aSArtem Bityutskiy  * Note, it is good idea to make sure the @dir->i_mutex is locked before
11031e51764aSArtem Bityutskiy  * calling this function.
11041e51764aSArtem Bityutskiy  */
11051b51e983SArtem Bityutskiy int dbg_check_dir(struct ubifs_info *c, const struct inode *dir)
11061e51764aSArtem Bityutskiy {
11071e51764aSArtem Bityutskiy 	unsigned int nlink = 2;
11081e51764aSArtem Bityutskiy 	union ubifs_key key;
11091e51764aSArtem Bityutskiy 	struct ubifs_dent_node *dent, *pdent = NULL;
11101e51764aSArtem Bityutskiy 	struct qstr nm = { .name = NULL };
11111e51764aSArtem Bityutskiy 	loff_t size = UBIFS_INO_NODE_SZ;
11121e51764aSArtem Bityutskiy 
11132b1844a8SArtem Bityutskiy 	if (!dbg_is_chk_gen(c))
11141e51764aSArtem Bityutskiy 		return 0;
11151e51764aSArtem Bityutskiy 
11161e51764aSArtem Bityutskiy 	if (!S_ISDIR(dir->i_mode))
11171e51764aSArtem Bityutskiy 		return 0;
11181e51764aSArtem Bityutskiy 
11191e51764aSArtem Bityutskiy 	lowest_dent_key(c, &key, dir->i_ino);
11201e51764aSArtem Bityutskiy 	while (1) {
11211e51764aSArtem Bityutskiy 		int err;
11221e51764aSArtem Bityutskiy 
11231e51764aSArtem Bityutskiy 		dent = ubifs_tnc_next_ent(c, &key, &nm);
11241e51764aSArtem Bityutskiy 		if (IS_ERR(dent)) {
11251e51764aSArtem Bityutskiy 			err = PTR_ERR(dent);
11261e51764aSArtem Bityutskiy 			if (err == -ENOENT)
11271e51764aSArtem Bityutskiy 				break;
11281e51764aSArtem Bityutskiy 			return err;
11291e51764aSArtem Bityutskiy 		}
11301e51764aSArtem Bityutskiy 
11311e51764aSArtem Bityutskiy 		nm.name = dent->name;
11321e51764aSArtem Bityutskiy 		nm.len = le16_to_cpu(dent->nlen);
11331e51764aSArtem Bityutskiy 		size += CALC_DENT_SIZE(nm.len);
11341e51764aSArtem Bityutskiy 		if (dent->type == UBIFS_ITYPE_DIR)
11351e51764aSArtem Bityutskiy 			nlink += 1;
11361e51764aSArtem Bityutskiy 		kfree(pdent);
11371e51764aSArtem Bityutskiy 		pdent = dent;
11381e51764aSArtem Bityutskiy 		key_read(c, &dent->key, &key);
11391e51764aSArtem Bityutskiy 	}
11401e51764aSArtem Bityutskiy 	kfree(pdent);
11411e51764aSArtem Bityutskiy 
11421e51764aSArtem Bityutskiy 	if (i_size_read(dir) != size) {
1143235c362bSSheng Yong 		ubifs_err(c, "directory inode %lu has size %llu, but calculated size is %llu",
114479fda517SArtem Bityutskiy 			  dir->i_ino, (unsigned long long)i_size_read(dir),
11451e51764aSArtem Bityutskiy 			  (unsigned long long)size);
1146edf6be24SArtem Bityutskiy 		ubifs_dump_inode(c, dir);
11471e51764aSArtem Bityutskiy 		dump_stack();
11481e51764aSArtem Bityutskiy 		return -EINVAL;
11491e51764aSArtem Bityutskiy 	}
11501e51764aSArtem Bityutskiy 	if (dir->i_nlink != nlink) {
1151235c362bSSheng Yong 		ubifs_err(c, "directory inode %lu has nlink %u, but calculated nlink is %u",
115279fda517SArtem Bityutskiy 			  dir->i_ino, dir->i_nlink, nlink);
1153edf6be24SArtem Bityutskiy 		ubifs_dump_inode(c, dir);
11541e51764aSArtem Bityutskiy 		dump_stack();
11551e51764aSArtem Bityutskiy 		return -EINVAL;
11561e51764aSArtem Bityutskiy 	}
11571e51764aSArtem Bityutskiy 
11581e51764aSArtem Bityutskiy 	return 0;
11591e51764aSArtem Bityutskiy }
11601e51764aSArtem Bityutskiy 
11611e51764aSArtem Bityutskiy /**
11621e51764aSArtem Bityutskiy  * dbg_check_key_order - make sure that colliding keys are properly ordered.
11631e51764aSArtem Bityutskiy  * @c: UBIFS file-system description object
11641e51764aSArtem Bityutskiy  * @zbr1: first zbranch
11651e51764aSArtem Bityutskiy  * @zbr2: following zbranch
11661e51764aSArtem Bityutskiy  *
11671e51764aSArtem Bityutskiy  * In UBIFS indexing B-tree colliding keys has to be sorted in binary order of
11681e51764aSArtem Bityutskiy  * names of the direntries/xentries which are referred by the keys. This
11691e51764aSArtem Bityutskiy  * function reads direntries/xentries referred by @zbr1 and @zbr2 and makes
11701e51764aSArtem Bityutskiy  * sure the name of direntry/xentry referred by @zbr1 is less than
11711e51764aSArtem Bityutskiy  * direntry/xentry referred by @zbr2. Returns zero if this is true, %1 if not,
11721e51764aSArtem Bityutskiy  * and a negative error code in case of failure.
11731e51764aSArtem Bityutskiy  */
11741e51764aSArtem Bityutskiy static int dbg_check_key_order(struct ubifs_info *c, struct ubifs_zbranch *zbr1,
11751e51764aSArtem Bityutskiy 			       struct ubifs_zbranch *zbr2)
11761e51764aSArtem Bityutskiy {
11771e51764aSArtem Bityutskiy 	int err, nlen1, nlen2, cmp;
11781e51764aSArtem Bityutskiy 	struct ubifs_dent_node *dent1, *dent2;
11791e51764aSArtem Bityutskiy 	union ubifs_key key;
1180515315a1SArtem Bityutskiy 	char key_buf[DBG_KEY_BUF_LEN];
11811e51764aSArtem Bityutskiy 
11821e51764aSArtem Bityutskiy 	ubifs_assert(!keys_cmp(c, &zbr1->key, &zbr2->key));
11831e51764aSArtem Bityutskiy 	dent1 = kmalloc(UBIFS_MAX_DENT_NODE_SZ, GFP_NOFS);
11841e51764aSArtem Bityutskiy 	if (!dent1)
11851e51764aSArtem Bityutskiy 		return -ENOMEM;
11861e51764aSArtem Bityutskiy 	dent2 = kmalloc(UBIFS_MAX_DENT_NODE_SZ, GFP_NOFS);
11871e51764aSArtem Bityutskiy 	if (!dent2) {
11881e51764aSArtem Bityutskiy 		err = -ENOMEM;
11891e51764aSArtem Bityutskiy 		goto out_free;
11901e51764aSArtem Bityutskiy 	}
11911e51764aSArtem Bityutskiy 
11921e51764aSArtem Bityutskiy 	err = ubifs_tnc_read_node(c, zbr1, dent1);
11931e51764aSArtem Bityutskiy 	if (err)
11941e51764aSArtem Bityutskiy 		goto out_free;
11951e51764aSArtem Bityutskiy 	err = ubifs_validate_entry(c, dent1);
11961e51764aSArtem Bityutskiy 	if (err)
11971e51764aSArtem Bityutskiy 		goto out_free;
11981e51764aSArtem Bityutskiy 
11991e51764aSArtem Bityutskiy 	err = ubifs_tnc_read_node(c, zbr2, dent2);
12001e51764aSArtem Bityutskiy 	if (err)
12011e51764aSArtem Bityutskiy 		goto out_free;
12021e51764aSArtem Bityutskiy 	err = ubifs_validate_entry(c, dent2);
12031e51764aSArtem Bityutskiy 	if (err)
12041e51764aSArtem Bityutskiy 		goto out_free;
12051e51764aSArtem Bityutskiy 
12061e51764aSArtem Bityutskiy 	/* Make sure node keys are the same as in zbranch */
12071e51764aSArtem Bityutskiy 	err = 1;
12081e51764aSArtem Bityutskiy 	key_read(c, &dent1->key, &key);
12091e51764aSArtem Bityutskiy 	if (keys_cmp(c, &zbr1->key, &key)) {
1210235c362bSSheng Yong 		ubifs_err(c, "1st entry at %d:%d has key %s", zbr1->lnum,
1211515315a1SArtem Bityutskiy 			  zbr1->offs, dbg_snprintf_key(c, &key, key_buf,
1212515315a1SArtem Bityutskiy 						       DBG_KEY_BUF_LEN));
1213235c362bSSheng Yong 		ubifs_err(c, "but it should have key %s according to tnc",
1214515315a1SArtem Bityutskiy 			  dbg_snprintf_key(c, &zbr1->key, key_buf,
1215515315a1SArtem Bityutskiy 					   DBG_KEY_BUF_LEN));
1216edf6be24SArtem Bityutskiy 		ubifs_dump_node(c, dent1);
12171e51764aSArtem Bityutskiy 		goto out_free;
12181e51764aSArtem Bityutskiy 	}
12191e51764aSArtem Bityutskiy 
12201e51764aSArtem Bityutskiy 	key_read(c, &dent2->key, &key);
12211e51764aSArtem Bityutskiy 	if (keys_cmp(c, &zbr2->key, &key)) {
1222235c362bSSheng Yong 		ubifs_err(c, "2nd entry at %d:%d has key %s", zbr1->lnum,
1223515315a1SArtem Bityutskiy 			  zbr1->offs, dbg_snprintf_key(c, &key, key_buf,
1224515315a1SArtem Bityutskiy 						       DBG_KEY_BUF_LEN));
1225235c362bSSheng Yong 		ubifs_err(c, "but it should have key %s according to tnc",
1226515315a1SArtem Bityutskiy 			  dbg_snprintf_key(c, &zbr2->key, key_buf,
1227515315a1SArtem Bityutskiy 					   DBG_KEY_BUF_LEN));
1228edf6be24SArtem Bityutskiy 		ubifs_dump_node(c, dent2);
12291e51764aSArtem Bityutskiy 		goto out_free;
12301e51764aSArtem Bityutskiy 	}
12311e51764aSArtem Bityutskiy 
12321e51764aSArtem Bityutskiy 	nlen1 = le16_to_cpu(dent1->nlen);
12331e51764aSArtem Bityutskiy 	nlen2 = le16_to_cpu(dent2->nlen);
12341e51764aSArtem Bityutskiy 
12351e51764aSArtem Bityutskiy 	cmp = memcmp(dent1->name, dent2->name, min_t(int, nlen1, nlen2));
12361e51764aSArtem Bityutskiy 	if (cmp < 0 || (cmp == 0 && nlen1 < nlen2)) {
12371e51764aSArtem Bityutskiy 		err = 0;
12381e51764aSArtem Bityutskiy 		goto out_free;
12391e51764aSArtem Bityutskiy 	}
12401e51764aSArtem Bityutskiy 	if (cmp == 0 && nlen1 == nlen2)
1241235c362bSSheng Yong 		ubifs_err(c, "2 xent/dent nodes with the same name");
12421e51764aSArtem Bityutskiy 	else
1243235c362bSSheng Yong 		ubifs_err(c, "bad order of colliding key %s",
1244515315a1SArtem Bityutskiy 			  dbg_snprintf_key(c, &key, key_buf, DBG_KEY_BUF_LEN));
12451e51764aSArtem Bityutskiy 
1246235c362bSSheng Yong 	ubifs_msg(c, "first node at %d:%d\n", zbr1->lnum, zbr1->offs);
1247edf6be24SArtem Bityutskiy 	ubifs_dump_node(c, dent1);
1248235c362bSSheng Yong 	ubifs_msg(c, "second node at %d:%d\n", zbr2->lnum, zbr2->offs);
1249edf6be24SArtem Bityutskiy 	ubifs_dump_node(c, dent2);
12501e51764aSArtem Bityutskiy 
12511e51764aSArtem Bityutskiy out_free:
12521e51764aSArtem Bityutskiy 	kfree(dent2);
12531e51764aSArtem Bityutskiy 	kfree(dent1);
12541e51764aSArtem Bityutskiy 	return err;
12551e51764aSArtem Bityutskiy }
12561e51764aSArtem Bityutskiy 
12571e51764aSArtem Bityutskiy /**
12581e51764aSArtem Bityutskiy  * dbg_check_znode - check if znode is all right.
12591e51764aSArtem Bityutskiy  * @c: UBIFS file-system description object
12601e51764aSArtem Bityutskiy  * @zbr: zbranch which points to this znode
12611e51764aSArtem Bityutskiy  *
12621e51764aSArtem Bityutskiy  * This function makes sure that znode referred to by @zbr is all right.
12631e51764aSArtem Bityutskiy  * Returns zero if it is, and %-EINVAL if it is not.
12641e51764aSArtem Bityutskiy  */
12651e51764aSArtem Bityutskiy static int dbg_check_znode(struct ubifs_info *c, struct ubifs_zbranch *zbr)
12661e51764aSArtem Bityutskiy {
12671e51764aSArtem Bityutskiy 	struct ubifs_znode *znode = zbr->znode;
12681e51764aSArtem Bityutskiy 	struct ubifs_znode *zp = znode->parent;
12691e51764aSArtem Bityutskiy 	int n, err, cmp;
12701e51764aSArtem Bityutskiy 
12711e51764aSArtem Bityutskiy 	if (znode->child_cnt <= 0 || znode->child_cnt > c->fanout) {
12721e51764aSArtem Bityutskiy 		err = 1;
12731e51764aSArtem Bityutskiy 		goto out;
12741e51764aSArtem Bityutskiy 	}
12751e51764aSArtem Bityutskiy 	if (znode->level < 0) {
12761e51764aSArtem Bityutskiy 		err = 2;
12771e51764aSArtem Bityutskiy 		goto out;
12781e51764aSArtem Bityutskiy 	}
12791e51764aSArtem Bityutskiy 	if (znode->iip < 0 || znode->iip >= c->fanout) {
12801e51764aSArtem Bityutskiy 		err = 3;
12811e51764aSArtem Bityutskiy 		goto out;
12821e51764aSArtem Bityutskiy 	}
12831e51764aSArtem Bityutskiy 
12841e51764aSArtem Bityutskiy 	if (zbr->len == 0)
12851e51764aSArtem Bityutskiy 		/* Only dirty zbranch may have no on-flash nodes */
12861e51764aSArtem Bityutskiy 		if (!ubifs_zn_dirty(znode)) {
12871e51764aSArtem Bityutskiy 			err = 4;
12881e51764aSArtem Bityutskiy 			goto out;
12891e51764aSArtem Bityutskiy 		}
12901e51764aSArtem Bityutskiy 
12911e51764aSArtem Bityutskiy 	if (ubifs_zn_dirty(znode)) {
12921e51764aSArtem Bityutskiy 		/*
12931e51764aSArtem Bityutskiy 		 * If znode is dirty, its parent has to be dirty as well. The
12941e51764aSArtem Bityutskiy 		 * order of the operation is important, so we have to have
12951e51764aSArtem Bityutskiy 		 * memory barriers.
12961e51764aSArtem Bityutskiy 		 */
12971e51764aSArtem Bityutskiy 		smp_mb();
12981e51764aSArtem Bityutskiy 		if (zp && !ubifs_zn_dirty(zp)) {
12991e51764aSArtem Bityutskiy 			/*
13001e51764aSArtem Bityutskiy 			 * The dirty flag is atomic and is cleared outside the
13011e51764aSArtem Bityutskiy 			 * TNC mutex, so znode's dirty flag may now have
13021e51764aSArtem Bityutskiy 			 * been cleared. The child is always cleared before the
13031e51764aSArtem Bityutskiy 			 * parent, so we just need to check again.
13041e51764aSArtem Bityutskiy 			 */
13051e51764aSArtem Bityutskiy 			smp_mb();
13061e51764aSArtem Bityutskiy 			if (ubifs_zn_dirty(znode)) {
13071e51764aSArtem Bityutskiy 				err = 5;
13081e51764aSArtem Bityutskiy 				goto out;
13091e51764aSArtem Bityutskiy 			}
13101e51764aSArtem Bityutskiy 		}
13111e51764aSArtem Bityutskiy 	}
13121e51764aSArtem Bityutskiy 
13131e51764aSArtem Bityutskiy 	if (zp) {
13141e51764aSArtem Bityutskiy 		const union ubifs_key *min, *max;
13151e51764aSArtem Bityutskiy 
13161e51764aSArtem Bityutskiy 		if (znode->level != zp->level - 1) {
13171e51764aSArtem Bityutskiy 			err = 6;
13181e51764aSArtem Bityutskiy 			goto out;
13191e51764aSArtem Bityutskiy 		}
13201e51764aSArtem Bityutskiy 
13211e51764aSArtem Bityutskiy 		/* Make sure the 'parent' pointer in our znode is correct */
13221e51764aSArtem Bityutskiy 		err = ubifs_search_zbranch(c, zp, &zbr->key, &n);
13231e51764aSArtem Bityutskiy 		if (!err) {
13241e51764aSArtem Bityutskiy 			/* This zbranch does not exist in the parent */
13251e51764aSArtem Bityutskiy 			err = 7;
13261e51764aSArtem Bityutskiy 			goto out;
13271e51764aSArtem Bityutskiy 		}
13281e51764aSArtem Bityutskiy 
13291e51764aSArtem Bityutskiy 		if (znode->iip >= zp->child_cnt) {
13301e51764aSArtem Bityutskiy 			err = 8;
13311e51764aSArtem Bityutskiy 			goto out;
13321e51764aSArtem Bityutskiy 		}
13331e51764aSArtem Bityutskiy 
13341e51764aSArtem Bityutskiy 		if (znode->iip != n) {
13351e51764aSArtem Bityutskiy 			/* This may happen only in case of collisions */
13361e51764aSArtem Bityutskiy 			if (keys_cmp(c, &zp->zbranch[n].key,
13371e51764aSArtem Bityutskiy 				     &zp->zbranch[znode->iip].key)) {
13381e51764aSArtem Bityutskiy 				err = 9;
13391e51764aSArtem Bityutskiy 				goto out;
13401e51764aSArtem Bityutskiy 			}
13411e51764aSArtem Bityutskiy 			n = znode->iip;
13421e51764aSArtem Bityutskiy 		}
13431e51764aSArtem Bityutskiy 
13441e51764aSArtem Bityutskiy 		/*
13451e51764aSArtem Bityutskiy 		 * Make sure that the first key in our znode is greater than or
13461e51764aSArtem Bityutskiy 		 * equal to the key in the pointing zbranch.
13471e51764aSArtem Bityutskiy 		 */
13481e51764aSArtem Bityutskiy 		min = &zbr->key;
13491e51764aSArtem Bityutskiy 		cmp = keys_cmp(c, min, &znode->zbranch[0].key);
13501e51764aSArtem Bityutskiy 		if (cmp == 1) {
13511e51764aSArtem Bityutskiy 			err = 10;
13521e51764aSArtem Bityutskiy 			goto out;
13531e51764aSArtem Bityutskiy 		}
13541e51764aSArtem Bityutskiy 
13551e51764aSArtem Bityutskiy 		if (n + 1 < zp->child_cnt) {
13561e51764aSArtem Bityutskiy 			max = &zp->zbranch[n + 1].key;
13571e51764aSArtem Bityutskiy 
13581e51764aSArtem Bityutskiy 			/*
13591e51764aSArtem Bityutskiy 			 * Make sure the last key in our znode is less or
13607d4e9ccbSArtem Bityutskiy 			 * equivalent than the key in the zbranch which goes
13611e51764aSArtem Bityutskiy 			 * after our pointing zbranch.
13621e51764aSArtem Bityutskiy 			 */
13631e51764aSArtem Bityutskiy 			cmp = keys_cmp(c, max,
13641e51764aSArtem Bityutskiy 				&znode->zbranch[znode->child_cnt - 1].key);
13651e51764aSArtem Bityutskiy 			if (cmp == -1) {
13661e51764aSArtem Bityutskiy 				err = 11;
13671e51764aSArtem Bityutskiy 				goto out;
13681e51764aSArtem Bityutskiy 			}
13691e51764aSArtem Bityutskiy 		}
13701e51764aSArtem Bityutskiy 	} else {
13711e51764aSArtem Bityutskiy 		/* This may only be root znode */
13721e51764aSArtem Bityutskiy 		if (zbr != &c->zroot) {
13731e51764aSArtem Bityutskiy 			err = 12;
13741e51764aSArtem Bityutskiy 			goto out;
13751e51764aSArtem Bityutskiy 		}
13761e51764aSArtem Bityutskiy 	}
13771e51764aSArtem Bityutskiy 
13781e51764aSArtem Bityutskiy 	/*
13791e51764aSArtem Bityutskiy 	 * Make sure that next key is greater or equivalent then the previous
13801e51764aSArtem Bityutskiy 	 * one.
13811e51764aSArtem Bityutskiy 	 */
13821e51764aSArtem Bityutskiy 	for (n = 1; n < znode->child_cnt; n++) {
13831e51764aSArtem Bityutskiy 		cmp = keys_cmp(c, &znode->zbranch[n - 1].key,
13841e51764aSArtem Bityutskiy 			       &znode->zbranch[n].key);
13851e51764aSArtem Bityutskiy 		if (cmp > 0) {
13861e51764aSArtem Bityutskiy 			err = 13;
13871e51764aSArtem Bityutskiy 			goto out;
13881e51764aSArtem Bityutskiy 		}
13891e51764aSArtem Bityutskiy 		if (cmp == 0) {
13901e51764aSArtem Bityutskiy 			/* This can only be keys with colliding hash */
13911e51764aSArtem Bityutskiy 			if (!is_hash_key(c, &znode->zbranch[n].key)) {
13921e51764aSArtem Bityutskiy 				err = 14;
13931e51764aSArtem Bityutskiy 				goto out;
13941e51764aSArtem Bityutskiy 			}
13951e51764aSArtem Bityutskiy 
13961e51764aSArtem Bityutskiy 			if (znode->level != 0 || c->replaying)
13971e51764aSArtem Bityutskiy 				continue;
13981e51764aSArtem Bityutskiy 
13991e51764aSArtem Bityutskiy 			/*
14001e51764aSArtem Bityutskiy 			 * Colliding keys should follow binary order of
14011e51764aSArtem Bityutskiy 			 * corresponding xentry/dentry names.
14021e51764aSArtem Bityutskiy 			 */
14031e51764aSArtem Bityutskiy 			err = dbg_check_key_order(c, &znode->zbranch[n - 1],
14041e51764aSArtem Bityutskiy 						  &znode->zbranch[n]);
14051e51764aSArtem Bityutskiy 			if (err < 0)
14061e51764aSArtem Bityutskiy 				return err;
14071e51764aSArtem Bityutskiy 			if (err) {
14081e51764aSArtem Bityutskiy 				err = 15;
14091e51764aSArtem Bityutskiy 				goto out;
14101e51764aSArtem Bityutskiy 			}
14111e51764aSArtem Bityutskiy 		}
14121e51764aSArtem Bityutskiy 	}
14131e51764aSArtem Bityutskiy 
14141e51764aSArtem Bityutskiy 	for (n = 0; n < znode->child_cnt; n++) {
14151e51764aSArtem Bityutskiy 		if (!znode->zbranch[n].znode &&
14161e51764aSArtem Bityutskiy 		    (znode->zbranch[n].lnum == 0 ||
14171e51764aSArtem Bityutskiy 		     znode->zbranch[n].len == 0)) {
14181e51764aSArtem Bityutskiy 			err = 16;
14191e51764aSArtem Bityutskiy 			goto out;
14201e51764aSArtem Bityutskiy 		}
14211e51764aSArtem Bityutskiy 
14221e51764aSArtem Bityutskiy 		if (znode->zbranch[n].lnum != 0 &&
14231e51764aSArtem Bityutskiy 		    znode->zbranch[n].len == 0) {
14241e51764aSArtem Bityutskiy 			err = 17;
14251e51764aSArtem Bityutskiy 			goto out;
14261e51764aSArtem Bityutskiy 		}
14271e51764aSArtem Bityutskiy 
14281e51764aSArtem Bityutskiy 		if (znode->zbranch[n].lnum == 0 &&
14291e51764aSArtem Bityutskiy 		    znode->zbranch[n].len != 0) {
14301e51764aSArtem Bityutskiy 			err = 18;
14311e51764aSArtem Bityutskiy 			goto out;
14321e51764aSArtem Bityutskiy 		}
14331e51764aSArtem Bityutskiy 
14341e51764aSArtem Bityutskiy 		if (znode->zbranch[n].lnum == 0 &&
14351e51764aSArtem Bityutskiy 		    znode->zbranch[n].offs != 0) {
14361e51764aSArtem Bityutskiy 			err = 19;
14371e51764aSArtem Bityutskiy 			goto out;
14381e51764aSArtem Bityutskiy 		}
14391e51764aSArtem Bityutskiy 
14401e51764aSArtem Bityutskiy 		if (znode->level != 0 && znode->zbranch[n].znode)
14411e51764aSArtem Bityutskiy 			if (znode->zbranch[n].znode->parent != znode) {
14421e51764aSArtem Bityutskiy 				err = 20;
14431e51764aSArtem Bityutskiy 				goto out;
14441e51764aSArtem Bityutskiy 			}
14451e51764aSArtem Bityutskiy 	}
14461e51764aSArtem Bityutskiy 
14471e51764aSArtem Bityutskiy 	return 0;
14481e51764aSArtem Bityutskiy 
14491e51764aSArtem Bityutskiy out:
1450235c362bSSheng Yong 	ubifs_err(c, "failed, error %d", err);
1451235c362bSSheng Yong 	ubifs_msg(c, "dump of the znode");
1452edf6be24SArtem Bityutskiy 	ubifs_dump_znode(c, znode);
14531e51764aSArtem Bityutskiy 	if (zp) {
1454235c362bSSheng Yong 		ubifs_msg(c, "dump of the parent znode");
1455edf6be24SArtem Bityutskiy 		ubifs_dump_znode(c, zp);
14561e51764aSArtem Bityutskiy 	}
14571e51764aSArtem Bityutskiy 	dump_stack();
14581e51764aSArtem Bityutskiy 	return -EINVAL;
14591e51764aSArtem Bityutskiy }
14601e51764aSArtem Bityutskiy 
14611e51764aSArtem Bityutskiy /**
14621e51764aSArtem Bityutskiy  * dbg_check_tnc - check TNC tree.
14631e51764aSArtem Bityutskiy  * @c: UBIFS file-system description object
14641e51764aSArtem Bityutskiy  * @extra: do extra checks that are possible at start commit
14651e51764aSArtem Bityutskiy  *
14661e51764aSArtem Bityutskiy  * This function traverses whole TNC tree and checks every znode. Returns zero
14671e51764aSArtem Bityutskiy  * if everything is all right and %-EINVAL if something is wrong with TNC.
14681e51764aSArtem Bityutskiy  */
14691e51764aSArtem Bityutskiy int dbg_check_tnc(struct ubifs_info *c, int extra)
14701e51764aSArtem Bityutskiy {
14711e51764aSArtem Bityutskiy 	struct ubifs_znode *znode;
14721e51764aSArtem Bityutskiy 	long clean_cnt = 0, dirty_cnt = 0;
14731e51764aSArtem Bityutskiy 	int err, last;
14741e51764aSArtem Bityutskiy 
14758d7819b4SArtem Bityutskiy 	if (!dbg_is_chk_index(c))
14761e51764aSArtem Bityutskiy 		return 0;
14771e51764aSArtem Bityutskiy 
14781e51764aSArtem Bityutskiy 	ubifs_assert(mutex_is_locked(&c->tnc_mutex));
14791e51764aSArtem Bityutskiy 	if (!c->zroot.znode)
14801e51764aSArtem Bityutskiy 		return 0;
14811e51764aSArtem Bityutskiy 
14821e51764aSArtem Bityutskiy 	znode = ubifs_tnc_postorder_first(c->zroot.znode);
14831e51764aSArtem Bityutskiy 	while (1) {
14841e51764aSArtem Bityutskiy 		struct ubifs_znode *prev;
14851e51764aSArtem Bityutskiy 		struct ubifs_zbranch *zbr;
14861e51764aSArtem Bityutskiy 
14871e51764aSArtem Bityutskiy 		if (!znode->parent)
14881e51764aSArtem Bityutskiy 			zbr = &c->zroot;
14891e51764aSArtem Bityutskiy 		else
14901e51764aSArtem Bityutskiy 			zbr = &znode->parent->zbranch[znode->iip];
14911e51764aSArtem Bityutskiy 
14921e51764aSArtem Bityutskiy 		err = dbg_check_znode(c, zbr);
14931e51764aSArtem Bityutskiy 		if (err)
14941e51764aSArtem Bityutskiy 			return err;
14951e51764aSArtem Bityutskiy 
14961e51764aSArtem Bityutskiy 		if (extra) {
14971e51764aSArtem Bityutskiy 			if (ubifs_zn_dirty(znode))
14981e51764aSArtem Bityutskiy 				dirty_cnt += 1;
14991e51764aSArtem Bityutskiy 			else
15001e51764aSArtem Bityutskiy 				clean_cnt += 1;
15011e51764aSArtem Bityutskiy 		}
15021e51764aSArtem Bityutskiy 
15031e51764aSArtem Bityutskiy 		prev = znode;
15041e51764aSArtem Bityutskiy 		znode = ubifs_tnc_postorder_next(znode);
15051e51764aSArtem Bityutskiy 		if (!znode)
15061e51764aSArtem Bityutskiy 			break;
15071e51764aSArtem Bityutskiy 
15081e51764aSArtem Bityutskiy 		/*
15091e51764aSArtem Bityutskiy 		 * If the last key of this znode is equivalent to the first key
15101e51764aSArtem Bityutskiy 		 * of the next znode (collision), then check order of the keys.
15111e51764aSArtem Bityutskiy 		 */
15121e51764aSArtem Bityutskiy 		last = prev->child_cnt - 1;
15131e51764aSArtem Bityutskiy 		if (prev->level == 0 && znode->level == 0 && !c->replaying &&
15141e51764aSArtem Bityutskiy 		    !keys_cmp(c, &prev->zbranch[last].key,
15151e51764aSArtem Bityutskiy 			      &znode->zbranch[0].key)) {
15161e51764aSArtem Bityutskiy 			err = dbg_check_key_order(c, &prev->zbranch[last],
15171e51764aSArtem Bityutskiy 						  &znode->zbranch[0]);
15181e51764aSArtem Bityutskiy 			if (err < 0)
15191e51764aSArtem Bityutskiy 				return err;
15201e51764aSArtem Bityutskiy 			if (err) {
1521235c362bSSheng Yong 				ubifs_msg(c, "first znode");
1522edf6be24SArtem Bityutskiy 				ubifs_dump_znode(c, prev);
1523235c362bSSheng Yong 				ubifs_msg(c, "second znode");
1524edf6be24SArtem Bityutskiy 				ubifs_dump_znode(c, znode);
15251e51764aSArtem Bityutskiy 				return -EINVAL;
15261e51764aSArtem Bityutskiy 			}
15271e51764aSArtem Bityutskiy 		}
15281e51764aSArtem Bityutskiy 	}
15291e51764aSArtem Bityutskiy 
15301e51764aSArtem Bityutskiy 	if (extra) {
15311e51764aSArtem Bityutskiy 		if (clean_cnt != atomic_long_read(&c->clean_zn_cnt)) {
1532235c362bSSheng Yong 			ubifs_err(c, "incorrect clean_zn_cnt %ld, calculated %ld",
15331e51764aSArtem Bityutskiy 				  atomic_long_read(&c->clean_zn_cnt),
15341e51764aSArtem Bityutskiy 				  clean_cnt);
15351e51764aSArtem Bityutskiy 			return -EINVAL;
15361e51764aSArtem Bityutskiy 		}
15371e51764aSArtem Bityutskiy 		if (dirty_cnt != atomic_long_read(&c->dirty_zn_cnt)) {
1538235c362bSSheng Yong 			ubifs_err(c, "incorrect dirty_zn_cnt %ld, calculated %ld",
15391e51764aSArtem Bityutskiy 				  atomic_long_read(&c->dirty_zn_cnt),
15401e51764aSArtem Bityutskiy 				  dirty_cnt);
15411e51764aSArtem Bityutskiy 			return -EINVAL;
15421e51764aSArtem Bityutskiy 		}
15431e51764aSArtem Bityutskiy 	}
15441e51764aSArtem Bityutskiy 
15451e51764aSArtem Bityutskiy 	return 0;
15461e51764aSArtem Bityutskiy }
15471e51764aSArtem Bityutskiy 
15481e51764aSArtem Bityutskiy /**
15491e51764aSArtem Bityutskiy  * dbg_walk_index - walk the on-flash index.
15501e51764aSArtem Bityutskiy  * @c: UBIFS file-system description object
15511e51764aSArtem Bityutskiy  * @leaf_cb: called for each leaf node
15521e51764aSArtem Bityutskiy  * @znode_cb: called for each indexing node
1553227c75c9SAdrian Hunter  * @priv: private data which is passed to callbacks
15541e51764aSArtem Bityutskiy  *
15551e51764aSArtem Bityutskiy  * This function walks the UBIFS index and calls the @leaf_cb for each leaf
15561e51764aSArtem Bityutskiy  * node and @znode_cb for each indexing node. Returns zero in case of success
15571e51764aSArtem Bityutskiy  * and a negative error code in case of failure.
15581e51764aSArtem Bityutskiy  *
15591e51764aSArtem Bityutskiy  * It would be better if this function removed every znode it pulled to into
15601e51764aSArtem Bityutskiy  * the TNC, so that the behavior more closely matched the non-debugging
15611e51764aSArtem Bityutskiy  * behavior.
15621e51764aSArtem Bityutskiy  */
15631e51764aSArtem Bityutskiy int dbg_walk_index(struct ubifs_info *c, dbg_leaf_callback leaf_cb,
15641e51764aSArtem Bityutskiy 		   dbg_znode_callback znode_cb, void *priv)
15651e51764aSArtem Bityutskiy {
15661e51764aSArtem Bityutskiy 	int err;
15671e51764aSArtem Bityutskiy 	struct ubifs_zbranch *zbr;
15681e51764aSArtem Bityutskiy 	struct ubifs_znode *znode, *child;
15691e51764aSArtem Bityutskiy 
15701e51764aSArtem Bityutskiy 	mutex_lock(&c->tnc_mutex);
15711e51764aSArtem Bityutskiy 	/* If the root indexing node is not in TNC - pull it */
15721e51764aSArtem Bityutskiy 	if (!c->zroot.znode) {
15731e51764aSArtem Bityutskiy 		c->zroot.znode = ubifs_load_znode(c, &c->zroot, NULL, 0);
15741e51764aSArtem Bityutskiy 		if (IS_ERR(c->zroot.znode)) {
15751e51764aSArtem Bityutskiy 			err = PTR_ERR(c->zroot.znode);
15761e51764aSArtem Bityutskiy 			c->zroot.znode = NULL;
15771e51764aSArtem Bityutskiy 			goto out_unlock;
15781e51764aSArtem Bityutskiy 		}
15791e51764aSArtem Bityutskiy 	}
15801e51764aSArtem Bityutskiy 
15811e51764aSArtem Bityutskiy 	/*
15821e51764aSArtem Bityutskiy 	 * We are going to traverse the indexing tree in the postorder manner.
15831e51764aSArtem Bityutskiy 	 * Go down and find the leftmost indexing node where we are going to
15841e51764aSArtem Bityutskiy 	 * start from.
15851e51764aSArtem Bityutskiy 	 */
15861e51764aSArtem Bityutskiy 	znode = c->zroot.znode;
15871e51764aSArtem Bityutskiy 	while (znode->level > 0) {
15881e51764aSArtem Bityutskiy 		zbr = &znode->zbranch[0];
15891e51764aSArtem Bityutskiy 		child = zbr->znode;
15901e51764aSArtem Bityutskiy 		if (!child) {
15911e51764aSArtem Bityutskiy 			child = ubifs_load_znode(c, zbr, znode, 0);
15921e51764aSArtem Bityutskiy 			if (IS_ERR(child)) {
15931e51764aSArtem Bityutskiy 				err = PTR_ERR(child);
15941e51764aSArtem Bityutskiy 				goto out_unlock;
15951e51764aSArtem Bityutskiy 			}
15961e51764aSArtem Bityutskiy 			zbr->znode = child;
15971e51764aSArtem Bityutskiy 		}
15981e51764aSArtem Bityutskiy 
15991e51764aSArtem Bityutskiy 		znode = child;
16001e51764aSArtem Bityutskiy 	}
16011e51764aSArtem Bityutskiy 
16021e51764aSArtem Bityutskiy 	/* Iterate over all indexing nodes */
16031e51764aSArtem Bityutskiy 	while (1) {
16041e51764aSArtem Bityutskiy 		int idx;
16051e51764aSArtem Bityutskiy 
16061e51764aSArtem Bityutskiy 		cond_resched();
16071e51764aSArtem Bityutskiy 
16081e51764aSArtem Bityutskiy 		if (znode_cb) {
16091e51764aSArtem Bityutskiy 			err = znode_cb(c, znode, priv);
16101e51764aSArtem Bityutskiy 			if (err) {
1611235c362bSSheng Yong 				ubifs_err(c, "znode checking function returned error %d",
161279fda517SArtem Bityutskiy 					  err);
1613edf6be24SArtem Bityutskiy 				ubifs_dump_znode(c, znode);
16141e51764aSArtem Bityutskiy 				goto out_dump;
16151e51764aSArtem Bityutskiy 			}
16161e51764aSArtem Bityutskiy 		}
16171e51764aSArtem Bityutskiy 		if (leaf_cb && znode->level == 0) {
16181e51764aSArtem Bityutskiy 			for (idx = 0; idx < znode->child_cnt; idx++) {
16191e51764aSArtem Bityutskiy 				zbr = &znode->zbranch[idx];
16201e51764aSArtem Bityutskiy 				err = leaf_cb(c, zbr, priv);
16211e51764aSArtem Bityutskiy 				if (err) {
1622235c362bSSheng Yong 					ubifs_err(c, "leaf checking function returned error %d, for leaf at LEB %d:%d",
16231e51764aSArtem Bityutskiy 						  err, zbr->lnum, zbr->offs);
16241e51764aSArtem Bityutskiy 					goto out_dump;
16251e51764aSArtem Bityutskiy 				}
16261e51764aSArtem Bityutskiy 			}
16271e51764aSArtem Bityutskiy 		}
16281e51764aSArtem Bityutskiy 
16291e51764aSArtem Bityutskiy 		if (!znode->parent)
16301e51764aSArtem Bityutskiy 			break;
16311e51764aSArtem Bityutskiy 
16321e51764aSArtem Bityutskiy 		idx = znode->iip + 1;
16331e51764aSArtem Bityutskiy 		znode = znode->parent;
16341e51764aSArtem Bityutskiy 		if (idx < znode->child_cnt) {
16351e51764aSArtem Bityutskiy 			/* Switch to the next index in the parent */
16361e51764aSArtem Bityutskiy 			zbr = &znode->zbranch[idx];
16371e51764aSArtem Bityutskiy 			child = zbr->znode;
16381e51764aSArtem Bityutskiy 			if (!child) {
16391e51764aSArtem Bityutskiy 				child = ubifs_load_znode(c, zbr, znode, idx);
16401e51764aSArtem Bityutskiy 				if (IS_ERR(child)) {
16411e51764aSArtem Bityutskiy 					err = PTR_ERR(child);
16421e51764aSArtem Bityutskiy 					goto out_unlock;
16431e51764aSArtem Bityutskiy 				}
16441e51764aSArtem Bityutskiy 				zbr->znode = child;
16451e51764aSArtem Bityutskiy 			}
16461e51764aSArtem Bityutskiy 			znode = child;
16471e51764aSArtem Bityutskiy 		} else
16481e51764aSArtem Bityutskiy 			/*
16491e51764aSArtem Bityutskiy 			 * This is the last child, switch to the parent and
16501e51764aSArtem Bityutskiy 			 * continue.
16511e51764aSArtem Bityutskiy 			 */
16521e51764aSArtem Bityutskiy 			continue;
16531e51764aSArtem Bityutskiy 
16541e51764aSArtem Bityutskiy 		/* Go to the lowest leftmost znode in the new sub-tree */
16551e51764aSArtem Bityutskiy 		while (znode->level > 0) {
16561e51764aSArtem Bityutskiy 			zbr = &znode->zbranch[0];
16571e51764aSArtem Bityutskiy 			child = zbr->znode;
16581e51764aSArtem Bityutskiy 			if (!child) {
16591e51764aSArtem Bityutskiy 				child = ubifs_load_znode(c, zbr, znode, 0);
16601e51764aSArtem Bityutskiy 				if (IS_ERR(child)) {
16611e51764aSArtem Bityutskiy 					err = PTR_ERR(child);
16621e51764aSArtem Bityutskiy 					goto out_unlock;
16631e51764aSArtem Bityutskiy 				}
16641e51764aSArtem Bityutskiy 				zbr->znode = child;
16651e51764aSArtem Bityutskiy 			}
16661e51764aSArtem Bityutskiy 			znode = child;
16671e51764aSArtem Bityutskiy 		}
16681e51764aSArtem Bityutskiy 	}
16691e51764aSArtem Bityutskiy 
16701e51764aSArtem Bityutskiy 	mutex_unlock(&c->tnc_mutex);
16711e51764aSArtem Bityutskiy 	return 0;
16721e51764aSArtem Bityutskiy 
16731e51764aSArtem Bityutskiy out_dump:
16741e51764aSArtem Bityutskiy 	if (znode->parent)
16751e51764aSArtem Bityutskiy 		zbr = &znode->parent->zbranch[znode->iip];
16761e51764aSArtem Bityutskiy 	else
16771e51764aSArtem Bityutskiy 		zbr = &c->zroot;
1678235c362bSSheng Yong 	ubifs_msg(c, "dump of znode at LEB %d:%d", zbr->lnum, zbr->offs);
1679edf6be24SArtem Bityutskiy 	ubifs_dump_znode(c, znode);
16801e51764aSArtem Bityutskiy out_unlock:
16811e51764aSArtem Bityutskiy 	mutex_unlock(&c->tnc_mutex);
16821e51764aSArtem Bityutskiy 	return err;
16831e51764aSArtem Bityutskiy }
16841e51764aSArtem Bityutskiy 
16851e51764aSArtem Bityutskiy /**
16861e51764aSArtem Bityutskiy  * add_size - add znode size to partially calculated index size.
16871e51764aSArtem Bityutskiy  * @c: UBIFS file-system description object
16881e51764aSArtem Bityutskiy  * @znode: znode to add size for
16891e51764aSArtem Bityutskiy  * @priv: partially calculated index size
16901e51764aSArtem Bityutskiy  *
16911e51764aSArtem Bityutskiy  * This is a helper function for 'dbg_check_idx_size()' which is called for
16921e51764aSArtem Bityutskiy  * every indexing node and adds its size to the 'long long' variable pointed to
16931e51764aSArtem Bityutskiy  * by @priv.
16941e51764aSArtem Bityutskiy  */
16951e51764aSArtem Bityutskiy static int add_size(struct ubifs_info *c, struct ubifs_znode *znode, void *priv)
16961e51764aSArtem Bityutskiy {
16971e51764aSArtem Bityutskiy 	long long *idx_size = priv;
16981e51764aSArtem Bityutskiy 	int add;
16991e51764aSArtem Bityutskiy 
17001e51764aSArtem Bityutskiy 	add = ubifs_idx_node_sz(c, znode->child_cnt);
17011e51764aSArtem Bityutskiy 	add = ALIGN(add, 8);
17021e51764aSArtem Bityutskiy 	*idx_size += add;
17031e51764aSArtem Bityutskiy 	return 0;
17041e51764aSArtem Bityutskiy }
17051e51764aSArtem Bityutskiy 
17061e51764aSArtem Bityutskiy /**
17071e51764aSArtem Bityutskiy  * dbg_check_idx_size - check index size.
17081e51764aSArtem Bityutskiy  * @c: UBIFS file-system description object
17091e51764aSArtem Bityutskiy  * @idx_size: size to check
17101e51764aSArtem Bityutskiy  *
17111e51764aSArtem Bityutskiy  * This function walks the UBIFS index, calculates its size and checks that the
17121e51764aSArtem Bityutskiy  * size is equivalent to @idx_size. Returns zero in case of success and a
17131e51764aSArtem Bityutskiy  * negative error code in case of failure.
17141e51764aSArtem Bityutskiy  */
17151e51764aSArtem Bityutskiy int dbg_check_idx_size(struct ubifs_info *c, long long idx_size)
17161e51764aSArtem Bityutskiy {
17171e51764aSArtem Bityutskiy 	int err;
17181e51764aSArtem Bityutskiy 	long long calc = 0;
17191e51764aSArtem Bityutskiy 
17208d7819b4SArtem Bityutskiy 	if (!dbg_is_chk_index(c))
17211e51764aSArtem Bityutskiy 		return 0;
17221e51764aSArtem Bityutskiy 
17231e51764aSArtem Bityutskiy 	err = dbg_walk_index(c, NULL, add_size, &calc);
17241e51764aSArtem Bityutskiy 	if (err) {
1725235c362bSSheng Yong 		ubifs_err(c, "error %d while walking the index", err);
17261e51764aSArtem Bityutskiy 		return err;
17271e51764aSArtem Bityutskiy 	}
17281e51764aSArtem Bityutskiy 
17291e51764aSArtem Bityutskiy 	if (calc != idx_size) {
1730235c362bSSheng Yong 		ubifs_err(c, "index size check failed: calculated size is %lld, should be %lld",
173179fda517SArtem Bityutskiy 			  calc, idx_size);
17321e51764aSArtem Bityutskiy 		dump_stack();
17331e51764aSArtem Bityutskiy 		return -EINVAL;
17341e51764aSArtem Bityutskiy 	}
17351e51764aSArtem Bityutskiy 
17361e51764aSArtem Bityutskiy 	return 0;
17371e51764aSArtem Bityutskiy }
17381e51764aSArtem Bityutskiy 
17391e51764aSArtem Bityutskiy /**
17401e51764aSArtem Bityutskiy  * struct fsck_inode - information about an inode used when checking the file-system.
17411e51764aSArtem Bityutskiy  * @rb: link in the RB-tree of inodes
17421e51764aSArtem Bityutskiy  * @inum: inode number
17431e51764aSArtem Bityutskiy  * @mode: inode type, permissions, etc
17441e51764aSArtem Bityutskiy  * @nlink: inode link count
17451e51764aSArtem Bityutskiy  * @xattr_cnt: count of extended attributes
17461e51764aSArtem Bityutskiy  * @references: how many directory/xattr entries refer this inode (calculated
17471e51764aSArtem Bityutskiy  *              while walking the index)
17481e51764aSArtem Bityutskiy  * @calc_cnt: for directory inode count of child directories
17491e51764aSArtem Bityutskiy  * @size: inode size (read from on-flash inode)
17501e51764aSArtem Bityutskiy  * @xattr_sz: summary size of all extended attributes (read from on-flash
17511e51764aSArtem Bityutskiy  *            inode)
17521e51764aSArtem Bityutskiy  * @calc_sz: for directories calculated directory size
17531e51764aSArtem Bityutskiy  * @calc_xcnt: count of extended attributes
17541e51764aSArtem Bityutskiy  * @calc_xsz: calculated summary size of all extended attributes
17551e51764aSArtem Bityutskiy  * @xattr_nms: sum of lengths of all extended attribute names belonging to this
17561e51764aSArtem Bityutskiy  *             inode (read from on-flash inode)
17571e51764aSArtem Bityutskiy  * @calc_xnms: calculated sum of lengths of all extended attribute names
17581e51764aSArtem Bityutskiy  */
17591e51764aSArtem Bityutskiy struct fsck_inode {
17601e51764aSArtem Bityutskiy 	struct rb_node rb;
17611e51764aSArtem Bityutskiy 	ino_t inum;
17621e51764aSArtem Bityutskiy 	umode_t mode;
17631e51764aSArtem Bityutskiy 	unsigned int nlink;
17641e51764aSArtem Bityutskiy 	unsigned int xattr_cnt;
17651e51764aSArtem Bityutskiy 	int references;
17661e51764aSArtem Bityutskiy 	int calc_cnt;
17671e51764aSArtem Bityutskiy 	long long size;
17681e51764aSArtem Bityutskiy 	unsigned int xattr_sz;
17691e51764aSArtem Bityutskiy 	long long calc_sz;
17701e51764aSArtem Bityutskiy 	long long calc_xcnt;
17711e51764aSArtem Bityutskiy 	long long calc_xsz;
17721e51764aSArtem Bityutskiy 	unsigned int xattr_nms;
17731e51764aSArtem Bityutskiy 	long long calc_xnms;
17741e51764aSArtem Bityutskiy };
17751e51764aSArtem Bityutskiy 
17761e51764aSArtem Bityutskiy /**
17771e51764aSArtem Bityutskiy  * struct fsck_data - private FS checking information.
17781e51764aSArtem Bityutskiy  * @inodes: RB-tree of all inodes (contains @struct fsck_inode objects)
17791e51764aSArtem Bityutskiy  */
17801e51764aSArtem Bityutskiy struct fsck_data {
17811e51764aSArtem Bityutskiy 	struct rb_root inodes;
17821e51764aSArtem Bityutskiy };
17831e51764aSArtem Bityutskiy 
17841e51764aSArtem Bityutskiy /**
17851e51764aSArtem Bityutskiy  * add_inode - add inode information to RB-tree of inodes.
17861e51764aSArtem Bityutskiy  * @c: UBIFS file-system description object
17871e51764aSArtem Bityutskiy  * @fsckd: FS checking information
17881e51764aSArtem Bityutskiy  * @ino: raw UBIFS inode to add
17891e51764aSArtem Bityutskiy  *
17901e51764aSArtem Bityutskiy  * This is a helper function for 'check_leaf()' which adds information about
17911e51764aSArtem Bityutskiy  * inode @ino to the RB-tree of inodes. Returns inode information pointer in
17921e51764aSArtem Bityutskiy  * case of success and a negative error code in case of failure.
17931e51764aSArtem Bityutskiy  */
17941e51764aSArtem Bityutskiy static struct fsck_inode *add_inode(struct ubifs_info *c,
17951e51764aSArtem Bityutskiy 				    struct fsck_data *fsckd,
17961e51764aSArtem Bityutskiy 				    struct ubifs_ino_node *ino)
17971e51764aSArtem Bityutskiy {
17981e51764aSArtem Bityutskiy 	struct rb_node **p, *parent = NULL;
17991e51764aSArtem Bityutskiy 	struct fsck_inode *fscki;
18001e51764aSArtem Bityutskiy 	ino_t inum = key_inum_flash(c, &ino->key);
180145cd5cddSArtem Bityutskiy 	struct inode *inode;
180245cd5cddSArtem Bityutskiy 	struct ubifs_inode *ui;
18031e51764aSArtem Bityutskiy 
18041e51764aSArtem Bityutskiy 	p = &fsckd->inodes.rb_node;
18051e51764aSArtem Bityutskiy 	while (*p) {
18061e51764aSArtem Bityutskiy 		parent = *p;
18071e51764aSArtem Bityutskiy 		fscki = rb_entry(parent, struct fsck_inode, rb);
18081e51764aSArtem Bityutskiy 		if (inum < fscki->inum)
18091e51764aSArtem Bityutskiy 			p = &(*p)->rb_left;
18101e51764aSArtem Bityutskiy 		else if (inum > fscki->inum)
18111e51764aSArtem Bityutskiy 			p = &(*p)->rb_right;
18121e51764aSArtem Bityutskiy 		else
18131e51764aSArtem Bityutskiy 			return fscki;
18141e51764aSArtem Bityutskiy 	}
18151e51764aSArtem Bityutskiy 
18161e51764aSArtem Bityutskiy 	if (inum > c->highest_inum) {
1817235c362bSSheng Yong 		ubifs_err(c, "too high inode number, max. is %lu",
1818e84461adSArtem Bityutskiy 			  (unsigned long)c->highest_inum);
18191e51764aSArtem Bityutskiy 		return ERR_PTR(-EINVAL);
18201e51764aSArtem Bityutskiy 	}
18211e51764aSArtem Bityutskiy 
18221e51764aSArtem Bityutskiy 	fscki = kzalloc(sizeof(struct fsck_inode), GFP_NOFS);
18231e51764aSArtem Bityutskiy 	if (!fscki)
18241e51764aSArtem Bityutskiy 		return ERR_PTR(-ENOMEM);
18251e51764aSArtem Bityutskiy 
182645cd5cddSArtem Bityutskiy 	inode = ilookup(c->vfs_sb, inum);
182745cd5cddSArtem Bityutskiy 
18281e51764aSArtem Bityutskiy 	fscki->inum = inum;
182945cd5cddSArtem Bityutskiy 	/*
183045cd5cddSArtem Bityutskiy 	 * If the inode is present in the VFS inode cache, use it instead of
183145cd5cddSArtem Bityutskiy 	 * the on-flash inode which might be out-of-date. E.g., the size might
183245cd5cddSArtem Bityutskiy 	 * be out-of-date. If we do not do this, the following may happen, for
183345cd5cddSArtem Bityutskiy 	 * example:
183445cd5cddSArtem Bityutskiy 	 *   1. A power cut happens
183545cd5cddSArtem Bityutskiy 	 *   2. We mount the file-system R/O, the replay process fixes up the
183645cd5cddSArtem Bityutskiy 	 *      inode size in the VFS cache, but on on-flash.
183745cd5cddSArtem Bityutskiy 	 *   3. 'check_leaf()' fails because it hits a data node beyond inode
183845cd5cddSArtem Bityutskiy 	 *      size.
183945cd5cddSArtem Bityutskiy 	 */
184045cd5cddSArtem Bityutskiy 	if (!inode) {
18411e51764aSArtem Bityutskiy 		fscki->nlink = le32_to_cpu(ino->nlink);
18421e51764aSArtem Bityutskiy 		fscki->size = le64_to_cpu(ino->size);
18431e51764aSArtem Bityutskiy 		fscki->xattr_cnt = le32_to_cpu(ino->xattr_cnt);
18441e51764aSArtem Bityutskiy 		fscki->xattr_sz = le32_to_cpu(ino->xattr_size);
18451e51764aSArtem Bityutskiy 		fscki->xattr_nms = le32_to_cpu(ino->xattr_names);
18461e51764aSArtem Bityutskiy 		fscki->mode = le32_to_cpu(ino->mode);
184745cd5cddSArtem Bityutskiy 	} else {
184845cd5cddSArtem Bityutskiy 		ui = ubifs_inode(inode);
184945cd5cddSArtem Bityutskiy 		fscki->nlink = inode->i_nlink;
185045cd5cddSArtem Bityutskiy 		fscki->size = inode->i_size;
185145cd5cddSArtem Bityutskiy 		fscki->xattr_cnt = ui->xattr_cnt;
185245cd5cddSArtem Bityutskiy 		fscki->xattr_sz = ui->xattr_size;
185345cd5cddSArtem Bityutskiy 		fscki->xattr_nms = ui->xattr_names;
185445cd5cddSArtem Bityutskiy 		fscki->mode = inode->i_mode;
185545cd5cddSArtem Bityutskiy 		iput(inode);
185645cd5cddSArtem Bityutskiy 	}
185745cd5cddSArtem Bityutskiy 
18581e51764aSArtem Bityutskiy 	if (S_ISDIR(fscki->mode)) {
18591e51764aSArtem Bityutskiy 		fscki->calc_sz = UBIFS_INO_NODE_SZ;
18601e51764aSArtem Bityutskiy 		fscki->calc_cnt = 2;
18611e51764aSArtem Bityutskiy 	}
186245cd5cddSArtem Bityutskiy 
18631e51764aSArtem Bityutskiy 	rb_link_node(&fscki->rb, parent, p);
18641e51764aSArtem Bityutskiy 	rb_insert_color(&fscki->rb, &fsckd->inodes);
186545cd5cddSArtem Bityutskiy 
18661e51764aSArtem Bityutskiy 	return fscki;
18671e51764aSArtem Bityutskiy }
18681e51764aSArtem Bityutskiy 
18691e51764aSArtem Bityutskiy /**
18701e51764aSArtem Bityutskiy  * search_inode - search inode in the RB-tree of inodes.
18711e51764aSArtem Bityutskiy  * @fsckd: FS checking information
18721e51764aSArtem Bityutskiy  * @inum: inode number to search
18731e51764aSArtem Bityutskiy  *
18741e51764aSArtem Bityutskiy  * This is a helper function for 'check_leaf()' which searches inode @inum in
18751e51764aSArtem Bityutskiy  * the RB-tree of inodes and returns an inode information pointer or %NULL if
18761e51764aSArtem Bityutskiy  * the inode was not found.
18771e51764aSArtem Bityutskiy  */
18781e51764aSArtem Bityutskiy static struct fsck_inode *search_inode(struct fsck_data *fsckd, ino_t inum)
18791e51764aSArtem Bityutskiy {
18801e51764aSArtem Bityutskiy 	struct rb_node *p;
18811e51764aSArtem Bityutskiy 	struct fsck_inode *fscki;
18821e51764aSArtem Bityutskiy 
18831e51764aSArtem Bityutskiy 	p = fsckd->inodes.rb_node;
18841e51764aSArtem Bityutskiy 	while (p) {
18851e51764aSArtem Bityutskiy 		fscki = rb_entry(p, struct fsck_inode, rb);
18861e51764aSArtem Bityutskiy 		if (inum < fscki->inum)
18871e51764aSArtem Bityutskiy 			p = p->rb_left;
18881e51764aSArtem Bityutskiy 		else if (inum > fscki->inum)
18891e51764aSArtem Bityutskiy 			p = p->rb_right;
18901e51764aSArtem Bityutskiy 		else
18911e51764aSArtem Bityutskiy 			return fscki;
18921e51764aSArtem Bityutskiy 	}
18931e51764aSArtem Bityutskiy 	return NULL;
18941e51764aSArtem Bityutskiy }
18951e51764aSArtem Bityutskiy 
18961e51764aSArtem Bityutskiy /**
18971e51764aSArtem Bityutskiy  * read_add_inode - read inode node and add it to RB-tree of inodes.
18981e51764aSArtem Bityutskiy  * @c: UBIFS file-system description object
18991e51764aSArtem Bityutskiy  * @fsckd: FS checking information
19001e51764aSArtem Bityutskiy  * @inum: inode number to read
19011e51764aSArtem Bityutskiy  *
19021e51764aSArtem Bityutskiy  * This is a helper function for 'check_leaf()' which finds inode node @inum in
19031e51764aSArtem Bityutskiy  * the index, reads it, and adds it to the RB-tree of inodes. Returns inode
19041e51764aSArtem Bityutskiy  * information pointer in case of success and a negative error code in case of
19051e51764aSArtem Bityutskiy  * failure.
19061e51764aSArtem Bityutskiy  */
19071e51764aSArtem Bityutskiy static struct fsck_inode *read_add_inode(struct ubifs_info *c,
19081e51764aSArtem Bityutskiy 					 struct fsck_data *fsckd, ino_t inum)
19091e51764aSArtem Bityutskiy {
19101e51764aSArtem Bityutskiy 	int n, err;
19111e51764aSArtem Bityutskiy 	union ubifs_key key;
19121e51764aSArtem Bityutskiy 	struct ubifs_znode *znode;
19131e51764aSArtem Bityutskiy 	struct ubifs_zbranch *zbr;
19141e51764aSArtem Bityutskiy 	struct ubifs_ino_node *ino;
19151e51764aSArtem Bityutskiy 	struct fsck_inode *fscki;
19161e51764aSArtem Bityutskiy 
19171e51764aSArtem Bityutskiy 	fscki = search_inode(fsckd, inum);
19181e51764aSArtem Bityutskiy 	if (fscki)
19191e51764aSArtem Bityutskiy 		return fscki;
19201e51764aSArtem Bityutskiy 
19211e51764aSArtem Bityutskiy 	ino_key_init(c, &key, inum);
19221e51764aSArtem Bityutskiy 	err = ubifs_lookup_level0(c, &key, &znode, &n);
19231e51764aSArtem Bityutskiy 	if (!err) {
1924235c362bSSheng Yong 		ubifs_err(c, "inode %lu not found in index", (unsigned long)inum);
19251e51764aSArtem Bityutskiy 		return ERR_PTR(-ENOENT);
19261e51764aSArtem Bityutskiy 	} else if (err < 0) {
1927235c362bSSheng Yong 		ubifs_err(c, "error %d while looking up inode %lu",
1928e84461adSArtem Bityutskiy 			  err, (unsigned long)inum);
19291e51764aSArtem Bityutskiy 		return ERR_PTR(err);
19301e51764aSArtem Bityutskiy 	}
19311e51764aSArtem Bityutskiy 
19321e51764aSArtem Bityutskiy 	zbr = &znode->zbranch[n];
19331e51764aSArtem Bityutskiy 	if (zbr->len < UBIFS_INO_NODE_SZ) {
1934235c362bSSheng Yong 		ubifs_err(c, "bad node %lu node length %d",
1935e84461adSArtem Bityutskiy 			  (unsigned long)inum, zbr->len);
19361e51764aSArtem Bityutskiy 		return ERR_PTR(-EINVAL);
19371e51764aSArtem Bityutskiy 	}
19381e51764aSArtem Bityutskiy 
19391e51764aSArtem Bityutskiy 	ino = kmalloc(zbr->len, GFP_NOFS);
19401e51764aSArtem Bityutskiy 	if (!ino)
19411e51764aSArtem Bityutskiy 		return ERR_PTR(-ENOMEM);
19421e51764aSArtem Bityutskiy 
19431e51764aSArtem Bityutskiy 	err = ubifs_tnc_read_node(c, zbr, ino);
19441e51764aSArtem Bityutskiy 	if (err) {
1945235c362bSSheng Yong 		ubifs_err(c, "cannot read inode node at LEB %d:%d, error %d",
19461e51764aSArtem Bityutskiy 			  zbr->lnum, zbr->offs, err);
19471e51764aSArtem Bityutskiy 		kfree(ino);
19481e51764aSArtem Bityutskiy 		return ERR_PTR(err);
19491e51764aSArtem Bityutskiy 	}
19501e51764aSArtem Bityutskiy 
19511e51764aSArtem Bityutskiy 	fscki = add_inode(c, fsckd, ino);
19521e51764aSArtem Bityutskiy 	kfree(ino);
19531e51764aSArtem Bityutskiy 	if (IS_ERR(fscki)) {
1954235c362bSSheng Yong 		ubifs_err(c, "error %ld while adding inode %lu node",
1955e84461adSArtem Bityutskiy 			  PTR_ERR(fscki), (unsigned long)inum);
19561e51764aSArtem Bityutskiy 		return fscki;
19571e51764aSArtem Bityutskiy 	}
19581e51764aSArtem Bityutskiy 
19591e51764aSArtem Bityutskiy 	return fscki;
19601e51764aSArtem Bityutskiy }
19611e51764aSArtem Bityutskiy 
19621e51764aSArtem Bityutskiy /**
19631e51764aSArtem Bityutskiy  * check_leaf - check leaf node.
19641e51764aSArtem Bityutskiy  * @c: UBIFS file-system description object
19651e51764aSArtem Bityutskiy  * @zbr: zbranch of the leaf node to check
19661e51764aSArtem Bityutskiy  * @priv: FS checking information
19671e51764aSArtem Bityutskiy  *
19681e51764aSArtem Bityutskiy  * This is a helper function for 'dbg_check_filesystem()' which is called for
19691e51764aSArtem Bityutskiy  * every single leaf node while walking the indexing tree. It checks that the
19701e51764aSArtem Bityutskiy  * leaf node referred from the indexing tree exists, has correct CRC, and does
19711e51764aSArtem Bityutskiy  * some other basic validation. This function is also responsible for building
19721e51764aSArtem Bityutskiy  * an RB-tree of inodes - it adds all inodes into the RB-tree. It also
19731e51764aSArtem Bityutskiy  * calculates reference count, size, etc for each inode in order to later
19741e51764aSArtem Bityutskiy  * compare them to the information stored inside the inodes and detect possible
19751e51764aSArtem Bityutskiy  * inconsistencies. Returns zero in case of success and a negative error code
19761e51764aSArtem Bityutskiy  * in case of failure.
19771e51764aSArtem Bityutskiy  */
19781e51764aSArtem Bityutskiy static int check_leaf(struct ubifs_info *c, struct ubifs_zbranch *zbr,
19791e51764aSArtem Bityutskiy 		      void *priv)
19801e51764aSArtem Bityutskiy {
19811e51764aSArtem Bityutskiy 	ino_t inum;
19821e51764aSArtem Bityutskiy 	void *node;
19831e51764aSArtem Bityutskiy 	struct ubifs_ch *ch;
19841e51764aSArtem Bityutskiy 	int err, type = key_type(c, &zbr->key);
19851e51764aSArtem Bityutskiy 	struct fsck_inode *fscki;
19861e51764aSArtem Bityutskiy 
19871e51764aSArtem Bityutskiy 	if (zbr->len < UBIFS_CH_SZ) {
1988235c362bSSheng Yong 		ubifs_err(c, "bad leaf length %d (LEB %d:%d)",
19891e51764aSArtem Bityutskiy 			  zbr->len, zbr->lnum, zbr->offs);
19901e51764aSArtem Bityutskiy 		return -EINVAL;
19911e51764aSArtem Bityutskiy 	}
19921e51764aSArtem Bityutskiy 
19931e51764aSArtem Bityutskiy 	node = kmalloc(zbr->len, GFP_NOFS);
19941e51764aSArtem Bityutskiy 	if (!node)
19951e51764aSArtem Bityutskiy 		return -ENOMEM;
19961e51764aSArtem Bityutskiy 
19971e51764aSArtem Bityutskiy 	err = ubifs_tnc_read_node(c, zbr, node);
19981e51764aSArtem Bityutskiy 	if (err) {
1999235c362bSSheng Yong 		ubifs_err(c, "cannot read leaf node at LEB %d:%d, error %d",
20001e51764aSArtem Bityutskiy 			  zbr->lnum, zbr->offs, err);
20011e51764aSArtem Bityutskiy 		goto out_free;
20021e51764aSArtem Bityutskiy 	}
20031e51764aSArtem Bityutskiy 
20041e51764aSArtem Bityutskiy 	/* If this is an inode node, add it to RB-tree of inodes */
20051e51764aSArtem Bityutskiy 	if (type == UBIFS_INO_KEY) {
20061e51764aSArtem Bityutskiy 		fscki = add_inode(c, priv, node);
20071e51764aSArtem Bityutskiy 		if (IS_ERR(fscki)) {
20081e51764aSArtem Bityutskiy 			err = PTR_ERR(fscki);
2009235c362bSSheng Yong 			ubifs_err(c, "error %d while adding inode node", err);
20101e51764aSArtem Bityutskiy 			goto out_dump;
20111e51764aSArtem Bityutskiy 		}
20121e51764aSArtem Bityutskiy 		goto out;
20131e51764aSArtem Bityutskiy 	}
20141e51764aSArtem Bityutskiy 
20151e51764aSArtem Bityutskiy 	if (type != UBIFS_DENT_KEY && type != UBIFS_XENT_KEY &&
20161e51764aSArtem Bityutskiy 	    type != UBIFS_DATA_KEY) {
2017235c362bSSheng Yong 		ubifs_err(c, "unexpected node type %d at LEB %d:%d",
20181e51764aSArtem Bityutskiy 			  type, zbr->lnum, zbr->offs);
20191e51764aSArtem Bityutskiy 		err = -EINVAL;
20201e51764aSArtem Bityutskiy 		goto out_free;
20211e51764aSArtem Bityutskiy 	}
20221e51764aSArtem Bityutskiy 
20231e51764aSArtem Bityutskiy 	ch = node;
20241e51764aSArtem Bityutskiy 	if (le64_to_cpu(ch->sqnum) > c->max_sqnum) {
2025235c362bSSheng Yong 		ubifs_err(c, "too high sequence number, max. is %llu",
20261e51764aSArtem Bityutskiy 			  c->max_sqnum);
20271e51764aSArtem Bityutskiy 		err = -EINVAL;
20281e51764aSArtem Bityutskiy 		goto out_dump;
20291e51764aSArtem Bityutskiy 	}
20301e51764aSArtem Bityutskiy 
20311e51764aSArtem Bityutskiy 	if (type == UBIFS_DATA_KEY) {
20321e51764aSArtem Bityutskiy 		long long blk_offs;
20331e51764aSArtem Bityutskiy 		struct ubifs_data_node *dn = node;
20341e51764aSArtem Bityutskiy 
2035fb4325a3SArtem Bityutskiy 		ubifs_assert(zbr->len >= UBIFS_DATA_NODE_SZ);
2036fb4325a3SArtem Bityutskiy 
20371e51764aSArtem Bityutskiy 		/*
20381e51764aSArtem Bityutskiy 		 * Search the inode node this data node belongs to and insert
20391e51764aSArtem Bityutskiy 		 * it to the RB-tree of inodes.
20401e51764aSArtem Bityutskiy 		 */
20411e51764aSArtem Bityutskiy 		inum = key_inum_flash(c, &dn->key);
20421e51764aSArtem Bityutskiy 		fscki = read_add_inode(c, priv, inum);
20431e51764aSArtem Bityutskiy 		if (IS_ERR(fscki)) {
20441e51764aSArtem Bityutskiy 			err = PTR_ERR(fscki);
2045235c362bSSheng Yong 			ubifs_err(c, "error %d while processing data node and trying to find inode node %lu",
2046e84461adSArtem Bityutskiy 				  err, (unsigned long)inum);
20471e51764aSArtem Bityutskiy 			goto out_dump;
20481e51764aSArtem Bityutskiy 		}
20491e51764aSArtem Bityutskiy 
20501e51764aSArtem Bityutskiy 		/* Make sure the data node is within inode size */
20511e51764aSArtem Bityutskiy 		blk_offs = key_block_flash(c, &dn->key);
20521e51764aSArtem Bityutskiy 		blk_offs <<= UBIFS_BLOCK_SHIFT;
20531e51764aSArtem Bityutskiy 		blk_offs += le32_to_cpu(dn->size);
20541e51764aSArtem Bityutskiy 		if (blk_offs > fscki->size) {
2055235c362bSSheng Yong 			ubifs_err(c, "data node at LEB %d:%d is not within inode size %lld",
205679fda517SArtem Bityutskiy 				  zbr->lnum, zbr->offs, fscki->size);
20571e51764aSArtem Bityutskiy 			err = -EINVAL;
20581e51764aSArtem Bityutskiy 			goto out_dump;
20591e51764aSArtem Bityutskiy 		}
20601e51764aSArtem Bityutskiy 	} else {
20611e51764aSArtem Bityutskiy 		int nlen;
20621e51764aSArtem Bityutskiy 		struct ubifs_dent_node *dent = node;
20631e51764aSArtem Bityutskiy 		struct fsck_inode *fscki1;
20641e51764aSArtem Bityutskiy 
2065fb4325a3SArtem Bityutskiy 		ubifs_assert(zbr->len >= UBIFS_DENT_NODE_SZ);
2066fb4325a3SArtem Bityutskiy 
20671e51764aSArtem Bityutskiy 		err = ubifs_validate_entry(c, dent);
20681e51764aSArtem Bityutskiy 		if (err)
20691e51764aSArtem Bityutskiy 			goto out_dump;
20701e51764aSArtem Bityutskiy 
20711e51764aSArtem Bityutskiy 		/*
20721e51764aSArtem Bityutskiy 		 * Search the inode node this entry refers to and the parent
20731e51764aSArtem Bityutskiy 		 * inode node and insert them to the RB-tree of inodes.
20741e51764aSArtem Bityutskiy 		 */
20751e51764aSArtem Bityutskiy 		inum = le64_to_cpu(dent->inum);
20761e51764aSArtem Bityutskiy 		fscki = read_add_inode(c, priv, inum);
20771e51764aSArtem Bityutskiy 		if (IS_ERR(fscki)) {
20781e51764aSArtem Bityutskiy 			err = PTR_ERR(fscki);
2079235c362bSSheng Yong 			ubifs_err(c, "error %d while processing entry node and trying to find inode node %lu",
2080e84461adSArtem Bityutskiy 				  err, (unsigned long)inum);
20811e51764aSArtem Bityutskiy 			goto out_dump;
20821e51764aSArtem Bityutskiy 		}
20831e51764aSArtem Bityutskiy 
20841e51764aSArtem Bityutskiy 		/* Count how many direntries or xentries refers this inode */
20851e51764aSArtem Bityutskiy 		fscki->references += 1;
20861e51764aSArtem Bityutskiy 
20871e51764aSArtem Bityutskiy 		inum = key_inum_flash(c, &dent->key);
20881e51764aSArtem Bityutskiy 		fscki1 = read_add_inode(c, priv, inum);
20891e51764aSArtem Bityutskiy 		if (IS_ERR(fscki1)) {
2090b38882f5SRoel Kluin 			err = PTR_ERR(fscki1);
2091235c362bSSheng Yong 			ubifs_err(c, "error %d while processing entry node and trying to find parent inode node %lu",
2092e84461adSArtem Bityutskiy 				  err, (unsigned long)inum);
20931e51764aSArtem Bityutskiy 			goto out_dump;
20941e51764aSArtem Bityutskiy 		}
20951e51764aSArtem Bityutskiy 
20961e51764aSArtem Bityutskiy 		nlen = le16_to_cpu(dent->nlen);
20971e51764aSArtem Bityutskiy 		if (type == UBIFS_XENT_KEY) {
20981e51764aSArtem Bityutskiy 			fscki1->calc_xcnt += 1;
20991e51764aSArtem Bityutskiy 			fscki1->calc_xsz += CALC_DENT_SIZE(nlen);
21001e51764aSArtem Bityutskiy 			fscki1->calc_xsz += CALC_XATTR_BYTES(fscki->size);
21011e51764aSArtem Bityutskiy 			fscki1->calc_xnms += nlen;
21021e51764aSArtem Bityutskiy 		} else {
21031e51764aSArtem Bityutskiy 			fscki1->calc_sz += CALC_DENT_SIZE(nlen);
21041e51764aSArtem Bityutskiy 			if (dent->type == UBIFS_ITYPE_DIR)
21051e51764aSArtem Bityutskiy 				fscki1->calc_cnt += 1;
21061e51764aSArtem Bityutskiy 		}
21071e51764aSArtem Bityutskiy 	}
21081e51764aSArtem Bityutskiy 
21091e51764aSArtem Bityutskiy out:
21101e51764aSArtem Bityutskiy 	kfree(node);
21111e51764aSArtem Bityutskiy 	return 0;
21121e51764aSArtem Bityutskiy 
21131e51764aSArtem Bityutskiy out_dump:
2114235c362bSSheng Yong 	ubifs_msg(c, "dump of node at LEB %d:%d", zbr->lnum, zbr->offs);
2115edf6be24SArtem Bityutskiy 	ubifs_dump_node(c, node);
21161e51764aSArtem Bityutskiy out_free:
21171e51764aSArtem Bityutskiy 	kfree(node);
21181e51764aSArtem Bityutskiy 	return err;
21191e51764aSArtem Bityutskiy }
21201e51764aSArtem Bityutskiy 
21211e51764aSArtem Bityutskiy /**
21221e51764aSArtem Bityutskiy  * free_inodes - free RB-tree of inodes.
21231e51764aSArtem Bityutskiy  * @fsckd: FS checking information
21241e51764aSArtem Bityutskiy  */
21251e51764aSArtem Bityutskiy static void free_inodes(struct fsck_data *fsckd)
21261e51764aSArtem Bityutskiy {
2127bb25e49fSCody P Schafer 	struct fsck_inode *fscki, *n;
21281e51764aSArtem Bityutskiy 
2129bb25e49fSCody P Schafer 	rbtree_postorder_for_each_entry_safe(fscki, n, &fsckd->inodes, rb)
21301e51764aSArtem Bityutskiy 		kfree(fscki);
21311e51764aSArtem Bityutskiy }
21321e51764aSArtem Bityutskiy 
21331e51764aSArtem Bityutskiy /**
21341e51764aSArtem Bityutskiy  * check_inodes - checks all inodes.
21351e51764aSArtem Bityutskiy  * @c: UBIFS file-system description object
21361e51764aSArtem Bityutskiy  * @fsckd: FS checking information
21371e51764aSArtem Bityutskiy  *
21381e51764aSArtem Bityutskiy  * This is a helper function for 'dbg_check_filesystem()' which walks the
21391e51764aSArtem Bityutskiy  * RB-tree of inodes after the index scan has been finished, and checks that
21401e51764aSArtem Bityutskiy  * inode nlink, size, etc are correct. Returns zero if inodes are fine,
21411e51764aSArtem Bityutskiy  * %-EINVAL if not, and a negative error code in case of failure.
21421e51764aSArtem Bityutskiy  */
21431e51764aSArtem Bityutskiy static int check_inodes(struct ubifs_info *c, struct fsck_data *fsckd)
21441e51764aSArtem Bityutskiy {
21451e51764aSArtem Bityutskiy 	int n, err;
21461e51764aSArtem Bityutskiy 	union ubifs_key key;
21471e51764aSArtem Bityutskiy 	struct ubifs_znode *znode;
21481e51764aSArtem Bityutskiy 	struct ubifs_zbranch *zbr;
21491e51764aSArtem Bityutskiy 	struct ubifs_ino_node *ino;
21501e51764aSArtem Bityutskiy 	struct fsck_inode *fscki;
21511e51764aSArtem Bityutskiy 	struct rb_node *this = rb_first(&fsckd->inodes);
21521e51764aSArtem Bityutskiy 
21531e51764aSArtem Bityutskiy 	while (this) {
21541e51764aSArtem Bityutskiy 		fscki = rb_entry(this, struct fsck_inode, rb);
21551e51764aSArtem Bityutskiy 		this = rb_next(this);
21561e51764aSArtem Bityutskiy 
21571e51764aSArtem Bityutskiy 		if (S_ISDIR(fscki->mode)) {
21581e51764aSArtem Bityutskiy 			/*
21591e51764aSArtem Bityutskiy 			 * Directories have to have exactly one reference (they
21601e51764aSArtem Bityutskiy 			 * cannot have hardlinks), although root inode is an
21611e51764aSArtem Bityutskiy 			 * exception.
21621e51764aSArtem Bityutskiy 			 */
21631e51764aSArtem Bityutskiy 			if (fscki->inum != UBIFS_ROOT_INO &&
21641e51764aSArtem Bityutskiy 			    fscki->references != 1) {
2165235c362bSSheng Yong 				ubifs_err(c, "directory inode %lu has %d direntries which refer it, but should be 1",
2166e84461adSArtem Bityutskiy 					  (unsigned long)fscki->inum,
21671e51764aSArtem Bityutskiy 					  fscki->references);
21681e51764aSArtem Bityutskiy 				goto out_dump;
21691e51764aSArtem Bityutskiy 			}
21701e51764aSArtem Bityutskiy 			if (fscki->inum == UBIFS_ROOT_INO &&
21711e51764aSArtem Bityutskiy 			    fscki->references != 0) {
2172235c362bSSheng Yong 				ubifs_err(c, "root inode %lu has non-zero (%d) direntries which refer it",
2173e84461adSArtem Bityutskiy 					  (unsigned long)fscki->inum,
2174e84461adSArtem Bityutskiy 					  fscki->references);
21751e51764aSArtem Bityutskiy 				goto out_dump;
21761e51764aSArtem Bityutskiy 			}
21771e51764aSArtem Bityutskiy 			if (fscki->calc_sz != fscki->size) {
2178235c362bSSheng Yong 				ubifs_err(c, "directory inode %lu size is %lld, but calculated size is %lld",
2179e84461adSArtem Bityutskiy 					  (unsigned long)fscki->inum,
2180e84461adSArtem Bityutskiy 					  fscki->size, fscki->calc_sz);
21811e51764aSArtem Bityutskiy 				goto out_dump;
21821e51764aSArtem Bityutskiy 			}
21831e51764aSArtem Bityutskiy 			if (fscki->calc_cnt != fscki->nlink) {
2184235c362bSSheng Yong 				ubifs_err(c, "directory inode %lu nlink is %d, but calculated nlink is %d",
2185e84461adSArtem Bityutskiy 					  (unsigned long)fscki->inum,
2186e84461adSArtem Bityutskiy 					  fscki->nlink, fscki->calc_cnt);
21871e51764aSArtem Bityutskiy 				goto out_dump;
21881e51764aSArtem Bityutskiy 			}
21891e51764aSArtem Bityutskiy 		} else {
21901e51764aSArtem Bityutskiy 			if (fscki->references != fscki->nlink) {
2191235c362bSSheng Yong 				ubifs_err(c, "inode %lu nlink is %d, but calculated nlink is %d",
2192e84461adSArtem Bityutskiy 					  (unsigned long)fscki->inum,
21931e51764aSArtem Bityutskiy 					  fscki->nlink, fscki->references);
21941e51764aSArtem Bityutskiy 				goto out_dump;
21951e51764aSArtem Bityutskiy 			}
21961e51764aSArtem Bityutskiy 		}
21971e51764aSArtem Bityutskiy 		if (fscki->xattr_sz != fscki->calc_xsz) {
2198235c362bSSheng Yong 			ubifs_err(c, "inode %lu has xattr size %u, but calculated size is %lld",
2199e84461adSArtem Bityutskiy 				  (unsigned long)fscki->inum, fscki->xattr_sz,
22001e51764aSArtem Bityutskiy 				  fscki->calc_xsz);
22011e51764aSArtem Bityutskiy 			goto out_dump;
22021e51764aSArtem Bityutskiy 		}
22031e51764aSArtem Bityutskiy 		if (fscki->xattr_cnt != fscki->calc_xcnt) {
2204235c362bSSheng Yong 			ubifs_err(c, "inode %lu has %u xattrs, but calculated count is %lld",
2205e84461adSArtem Bityutskiy 				  (unsigned long)fscki->inum,
22061e51764aSArtem Bityutskiy 				  fscki->xattr_cnt, fscki->calc_xcnt);
22071e51764aSArtem Bityutskiy 			goto out_dump;
22081e51764aSArtem Bityutskiy 		}
22091e51764aSArtem Bityutskiy 		if (fscki->xattr_nms != fscki->calc_xnms) {
2210235c362bSSheng Yong 			ubifs_err(c, "inode %lu has xattr names' size %u, but calculated names' size is %lld",
2211e84461adSArtem Bityutskiy 				  (unsigned long)fscki->inum, fscki->xattr_nms,
22121e51764aSArtem Bityutskiy 				  fscki->calc_xnms);
22131e51764aSArtem Bityutskiy 			goto out_dump;
22141e51764aSArtem Bityutskiy 		}
22151e51764aSArtem Bityutskiy 	}
22161e51764aSArtem Bityutskiy 
22171e51764aSArtem Bityutskiy 	return 0;
22181e51764aSArtem Bityutskiy 
22191e51764aSArtem Bityutskiy out_dump:
22201e51764aSArtem Bityutskiy 	/* Read the bad inode and dump it */
22211e51764aSArtem Bityutskiy 	ino_key_init(c, &key, fscki->inum);
22221e51764aSArtem Bityutskiy 	err = ubifs_lookup_level0(c, &key, &znode, &n);
22231e51764aSArtem Bityutskiy 	if (!err) {
2224235c362bSSheng Yong 		ubifs_err(c, "inode %lu not found in index",
2225e84461adSArtem Bityutskiy 			  (unsigned long)fscki->inum);
22261e51764aSArtem Bityutskiy 		return -ENOENT;
22271e51764aSArtem Bityutskiy 	} else if (err < 0) {
2228235c362bSSheng Yong 		ubifs_err(c, "error %d while looking up inode %lu",
2229e84461adSArtem Bityutskiy 			  err, (unsigned long)fscki->inum);
22301e51764aSArtem Bityutskiy 		return err;
22311e51764aSArtem Bityutskiy 	}
22321e51764aSArtem Bityutskiy 
22331e51764aSArtem Bityutskiy 	zbr = &znode->zbranch[n];
22341e51764aSArtem Bityutskiy 	ino = kmalloc(zbr->len, GFP_NOFS);
22351e51764aSArtem Bityutskiy 	if (!ino)
22361e51764aSArtem Bityutskiy 		return -ENOMEM;
22371e51764aSArtem Bityutskiy 
22381e51764aSArtem Bityutskiy 	err = ubifs_tnc_read_node(c, zbr, ino);
22391e51764aSArtem Bityutskiy 	if (err) {
2240235c362bSSheng Yong 		ubifs_err(c, "cannot read inode node at LEB %d:%d, error %d",
22411e51764aSArtem Bityutskiy 			  zbr->lnum, zbr->offs, err);
22421e51764aSArtem Bityutskiy 		kfree(ino);
22431e51764aSArtem Bityutskiy 		return err;
22441e51764aSArtem Bityutskiy 	}
22451e51764aSArtem Bityutskiy 
2246235c362bSSheng Yong 	ubifs_msg(c, "dump of the inode %lu sitting in LEB %d:%d",
2247e84461adSArtem Bityutskiy 		  (unsigned long)fscki->inum, zbr->lnum, zbr->offs);
2248edf6be24SArtem Bityutskiy 	ubifs_dump_node(c, ino);
22491e51764aSArtem Bityutskiy 	kfree(ino);
22501e51764aSArtem Bityutskiy 	return -EINVAL;
22511e51764aSArtem Bityutskiy }
22521e51764aSArtem Bityutskiy 
22531e51764aSArtem Bityutskiy /**
22541e51764aSArtem Bityutskiy  * dbg_check_filesystem - check the file-system.
22551e51764aSArtem Bityutskiy  * @c: UBIFS file-system description object
22561e51764aSArtem Bityutskiy  *
22571e51764aSArtem Bityutskiy  * This function checks the file system, namely:
22581e51764aSArtem Bityutskiy  * o makes sure that all leaf nodes exist and their CRCs are correct;
22591e51764aSArtem Bityutskiy  * o makes sure inode nlink, size, xattr size/count are correct (for all
22601e51764aSArtem Bityutskiy  *   inodes).
22611e51764aSArtem Bityutskiy  *
22621e51764aSArtem Bityutskiy  * The function reads whole indexing tree and all nodes, so it is pretty
22631e51764aSArtem Bityutskiy  * heavy-weight. Returns zero if the file-system is consistent, %-EINVAL if
22641e51764aSArtem Bityutskiy  * not, and a negative error code in case of failure.
22651e51764aSArtem Bityutskiy  */
22661e51764aSArtem Bityutskiy int dbg_check_filesystem(struct ubifs_info *c)
22671e51764aSArtem Bityutskiy {
22681e51764aSArtem Bityutskiy 	int err;
22691e51764aSArtem Bityutskiy 	struct fsck_data fsckd;
22701e51764aSArtem Bityutskiy 
22712b1844a8SArtem Bityutskiy 	if (!dbg_is_chk_fs(c))
22721e51764aSArtem Bityutskiy 		return 0;
22731e51764aSArtem Bityutskiy 
22741e51764aSArtem Bityutskiy 	fsckd.inodes = RB_ROOT;
22751e51764aSArtem Bityutskiy 	err = dbg_walk_index(c, check_leaf, NULL, &fsckd);
22761e51764aSArtem Bityutskiy 	if (err)
22771e51764aSArtem Bityutskiy 		goto out_free;
22781e51764aSArtem Bityutskiy 
22791e51764aSArtem Bityutskiy 	err = check_inodes(c, &fsckd);
22801e51764aSArtem Bityutskiy 	if (err)
22811e51764aSArtem Bityutskiy 		goto out_free;
22821e51764aSArtem Bityutskiy 
22831e51764aSArtem Bityutskiy 	free_inodes(&fsckd);
22841e51764aSArtem Bityutskiy 	return 0;
22851e51764aSArtem Bityutskiy 
22861e51764aSArtem Bityutskiy out_free:
2287235c362bSSheng Yong 	ubifs_err(c, "file-system check failed with error %d", err);
22881e51764aSArtem Bityutskiy 	dump_stack();
22891e51764aSArtem Bityutskiy 	free_inodes(&fsckd);
22901e51764aSArtem Bityutskiy 	return err;
22911e51764aSArtem Bityutskiy }
22921e51764aSArtem Bityutskiy 
22933bb66b47SArtem Bityutskiy /**
22943bb66b47SArtem Bityutskiy  * dbg_check_data_nodes_order - check that list of data nodes is sorted.
22953bb66b47SArtem Bityutskiy  * @c: UBIFS file-system description object
22963bb66b47SArtem Bityutskiy  * @head: the list of nodes ('struct ubifs_scan_node' objects)
22973bb66b47SArtem Bityutskiy  *
22983bb66b47SArtem Bityutskiy  * This function returns zero if the list of data nodes is sorted correctly,
22993bb66b47SArtem Bityutskiy  * and %-EINVAL if not.
23003bb66b47SArtem Bityutskiy  */
23013bb66b47SArtem Bityutskiy int dbg_check_data_nodes_order(struct ubifs_info *c, struct list_head *head)
23023bb66b47SArtem Bityutskiy {
23033bb66b47SArtem Bityutskiy 	struct list_head *cur;
23043bb66b47SArtem Bityutskiy 	struct ubifs_scan_node *sa, *sb;
23053bb66b47SArtem Bityutskiy 
23062b1844a8SArtem Bityutskiy 	if (!dbg_is_chk_gen(c))
23073bb66b47SArtem Bityutskiy 		return 0;
23083bb66b47SArtem Bityutskiy 
23093bb66b47SArtem Bityutskiy 	for (cur = head->next; cur->next != head; cur = cur->next) {
23103bb66b47SArtem Bityutskiy 		ino_t inuma, inumb;
23113bb66b47SArtem Bityutskiy 		uint32_t blka, blkb;
23123bb66b47SArtem Bityutskiy 
23133bb66b47SArtem Bityutskiy 		cond_resched();
23143bb66b47SArtem Bityutskiy 		sa = container_of(cur, struct ubifs_scan_node, list);
23153bb66b47SArtem Bityutskiy 		sb = container_of(cur->next, struct ubifs_scan_node, list);
23163bb66b47SArtem Bityutskiy 
23173bb66b47SArtem Bityutskiy 		if (sa->type != UBIFS_DATA_NODE) {
2318235c362bSSheng Yong 			ubifs_err(c, "bad node type %d", sa->type);
2319edf6be24SArtem Bityutskiy 			ubifs_dump_node(c, sa->node);
23203bb66b47SArtem Bityutskiy 			return -EINVAL;
23213bb66b47SArtem Bityutskiy 		}
23223bb66b47SArtem Bityutskiy 		if (sb->type != UBIFS_DATA_NODE) {
2323235c362bSSheng Yong 			ubifs_err(c, "bad node type %d", sb->type);
2324edf6be24SArtem Bityutskiy 			ubifs_dump_node(c, sb->node);
23253bb66b47SArtem Bityutskiy 			return -EINVAL;
23263bb66b47SArtem Bityutskiy 		}
23273bb66b47SArtem Bityutskiy 
23283bb66b47SArtem Bityutskiy 		inuma = key_inum(c, &sa->key);
23293bb66b47SArtem Bityutskiy 		inumb = key_inum(c, &sb->key);
23303bb66b47SArtem Bityutskiy 
23313bb66b47SArtem Bityutskiy 		if (inuma < inumb)
23323bb66b47SArtem Bityutskiy 			continue;
23333bb66b47SArtem Bityutskiy 		if (inuma > inumb) {
2334235c362bSSheng Yong 			ubifs_err(c, "larger inum %lu goes before inum %lu",
23353bb66b47SArtem Bityutskiy 				  (unsigned long)inuma, (unsigned long)inumb);
23363bb66b47SArtem Bityutskiy 			goto error_dump;
23373bb66b47SArtem Bityutskiy 		}
23383bb66b47SArtem Bityutskiy 
23393bb66b47SArtem Bityutskiy 		blka = key_block(c, &sa->key);
23403bb66b47SArtem Bityutskiy 		blkb = key_block(c, &sb->key);
23413bb66b47SArtem Bityutskiy 
23423bb66b47SArtem Bityutskiy 		if (blka > blkb) {
2343235c362bSSheng Yong 			ubifs_err(c, "larger block %u goes before %u", blka, blkb);
23443bb66b47SArtem Bityutskiy 			goto error_dump;
23453bb66b47SArtem Bityutskiy 		}
23463bb66b47SArtem Bityutskiy 		if (blka == blkb) {
2347235c362bSSheng Yong 			ubifs_err(c, "two data nodes for the same block");
23483bb66b47SArtem Bityutskiy 			goto error_dump;
23493bb66b47SArtem Bityutskiy 		}
23503bb66b47SArtem Bityutskiy 	}
23513bb66b47SArtem Bityutskiy 
23523bb66b47SArtem Bityutskiy 	return 0;
23533bb66b47SArtem Bityutskiy 
23543bb66b47SArtem Bityutskiy error_dump:
2355edf6be24SArtem Bityutskiy 	ubifs_dump_node(c, sa->node);
2356edf6be24SArtem Bityutskiy 	ubifs_dump_node(c, sb->node);
23573bb66b47SArtem Bityutskiy 	return -EINVAL;
23583bb66b47SArtem Bityutskiy }
23593bb66b47SArtem Bityutskiy 
23603bb66b47SArtem Bityutskiy /**
23613bb66b47SArtem Bityutskiy  * dbg_check_nondata_nodes_order - check that list of data nodes is sorted.
23623bb66b47SArtem Bityutskiy  * @c: UBIFS file-system description object
23633bb66b47SArtem Bityutskiy  * @head: the list of nodes ('struct ubifs_scan_node' objects)
23643bb66b47SArtem Bityutskiy  *
23653bb66b47SArtem Bityutskiy  * This function returns zero if the list of non-data nodes is sorted correctly,
23663bb66b47SArtem Bityutskiy  * and %-EINVAL if not.
23673bb66b47SArtem Bityutskiy  */
23683bb66b47SArtem Bityutskiy int dbg_check_nondata_nodes_order(struct ubifs_info *c, struct list_head *head)
23693bb66b47SArtem Bityutskiy {
23703bb66b47SArtem Bityutskiy 	struct list_head *cur;
23713bb66b47SArtem Bityutskiy 	struct ubifs_scan_node *sa, *sb;
23723bb66b47SArtem Bityutskiy 
23732b1844a8SArtem Bityutskiy 	if (!dbg_is_chk_gen(c))
23743bb66b47SArtem Bityutskiy 		return 0;
23753bb66b47SArtem Bityutskiy 
23763bb66b47SArtem Bityutskiy 	for (cur = head->next; cur->next != head; cur = cur->next) {
23773bb66b47SArtem Bityutskiy 		ino_t inuma, inumb;
23783bb66b47SArtem Bityutskiy 		uint32_t hasha, hashb;
23793bb66b47SArtem Bityutskiy 
23803bb66b47SArtem Bityutskiy 		cond_resched();
23813bb66b47SArtem Bityutskiy 		sa = container_of(cur, struct ubifs_scan_node, list);
23823bb66b47SArtem Bityutskiy 		sb = container_of(cur->next, struct ubifs_scan_node, list);
23833bb66b47SArtem Bityutskiy 
23843bb66b47SArtem Bityutskiy 		if (sa->type != UBIFS_INO_NODE && sa->type != UBIFS_DENT_NODE &&
23853bb66b47SArtem Bityutskiy 		    sa->type != UBIFS_XENT_NODE) {
2386235c362bSSheng Yong 			ubifs_err(c, "bad node type %d", sa->type);
2387edf6be24SArtem Bityutskiy 			ubifs_dump_node(c, sa->node);
23883bb66b47SArtem Bityutskiy 			return -EINVAL;
23893bb66b47SArtem Bityutskiy 		}
23903bb66b47SArtem Bityutskiy 		if (sa->type != UBIFS_INO_NODE && sa->type != UBIFS_DENT_NODE &&
23913bb66b47SArtem Bityutskiy 		    sa->type != UBIFS_XENT_NODE) {
2392235c362bSSheng Yong 			ubifs_err(c, "bad node type %d", sb->type);
2393edf6be24SArtem Bityutskiy 			ubifs_dump_node(c, sb->node);
23943bb66b47SArtem Bityutskiy 			return -EINVAL;
23953bb66b47SArtem Bityutskiy 		}
23963bb66b47SArtem Bityutskiy 
23973bb66b47SArtem Bityutskiy 		if (sa->type != UBIFS_INO_NODE && sb->type == UBIFS_INO_NODE) {
2398235c362bSSheng Yong 			ubifs_err(c, "non-inode node goes before inode node");
23993bb66b47SArtem Bityutskiy 			goto error_dump;
24003bb66b47SArtem Bityutskiy 		}
24013bb66b47SArtem Bityutskiy 
24023bb66b47SArtem Bityutskiy 		if (sa->type == UBIFS_INO_NODE && sb->type != UBIFS_INO_NODE)
24033bb66b47SArtem Bityutskiy 			continue;
24043bb66b47SArtem Bityutskiy 
24053bb66b47SArtem Bityutskiy 		if (sa->type == UBIFS_INO_NODE && sb->type == UBIFS_INO_NODE) {
24063bb66b47SArtem Bityutskiy 			/* Inode nodes are sorted in descending size order */
24073bb66b47SArtem Bityutskiy 			if (sa->len < sb->len) {
2408235c362bSSheng Yong 				ubifs_err(c, "smaller inode node goes first");
24093bb66b47SArtem Bityutskiy 				goto error_dump;
24103bb66b47SArtem Bityutskiy 			}
24113bb66b47SArtem Bityutskiy 			continue;
24123bb66b47SArtem Bityutskiy 		}
24133bb66b47SArtem Bityutskiy 
24143bb66b47SArtem Bityutskiy 		/*
24153bb66b47SArtem Bityutskiy 		 * This is either a dentry or xentry, which should be sorted in
24163bb66b47SArtem Bityutskiy 		 * ascending (parent ino, hash) order.
24173bb66b47SArtem Bityutskiy 		 */
24183bb66b47SArtem Bityutskiy 		inuma = key_inum(c, &sa->key);
24193bb66b47SArtem Bityutskiy 		inumb = key_inum(c, &sb->key);
24203bb66b47SArtem Bityutskiy 
24213bb66b47SArtem Bityutskiy 		if (inuma < inumb)
24223bb66b47SArtem Bityutskiy 			continue;
24233bb66b47SArtem Bityutskiy 		if (inuma > inumb) {
2424235c362bSSheng Yong 			ubifs_err(c, "larger inum %lu goes before inum %lu",
24253bb66b47SArtem Bityutskiy 				  (unsigned long)inuma, (unsigned long)inumb);
24263bb66b47SArtem Bityutskiy 			goto error_dump;
24273bb66b47SArtem Bityutskiy 		}
24283bb66b47SArtem Bityutskiy 
24293bb66b47SArtem Bityutskiy 		hasha = key_block(c, &sa->key);
24303bb66b47SArtem Bityutskiy 		hashb = key_block(c, &sb->key);
24313bb66b47SArtem Bityutskiy 
24323bb66b47SArtem Bityutskiy 		if (hasha > hashb) {
2433235c362bSSheng Yong 			ubifs_err(c, "larger hash %u goes before %u",
2434c4361570SArtem Bityutskiy 				  hasha, hashb);
24353bb66b47SArtem Bityutskiy 			goto error_dump;
24363bb66b47SArtem Bityutskiy 		}
24373bb66b47SArtem Bityutskiy 	}
24383bb66b47SArtem Bityutskiy 
24393bb66b47SArtem Bityutskiy 	return 0;
24403bb66b47SArtem Bityutskiy 
24413bb66b47SArtem Bityutskiy error_dump:
2442235c362bSSheng Yong 	ubifs_msg(c, "dumping first node");
2443edf6be24SArtem Bityutskiy 	ubifs_dump_node(c, sa->node);
2444235c362bSSheng Yong 	ubifs_msg(c, "dumping second node");
2445edf6be24SArtem Bityutskiy 	ubifs_dump_node(c, sb->node);
24463bb66b47SArtem Bityutskiy 	return -EINVAL;
24473bb66b47SArtem Bityutskiy 	return 0;
24483bb66b47SArtem Bityutskiy }
24493bb66b47SArtem Bityutskiy 
2450a7fa94a9SArtem Bityutskiy static inline int chance(unsigned int n, unsigned int out_of)
24511e51764aSArtem Bityutskiy {
24523d251a5bSAkinobu Mita 	return !!((prandom_u32() % out_of) + 1 <= n);
2453a7fa94a9SArtem Bityutskiy 
24541e51764aSArtem Bityutskiy }
24551e51764aSArtem Bityutskiy 
2456d27462a5SArtem Bityutskiy static int power_cut_emulated(struct ubifs_info *c, int lnum, int write)
24571e51764aSArtem Bityutskiy {
2458f57cb188SArtem Bityutskiy 	struct ubifs_debug_info *d = c->dbg;
24591e51764aSArtem Bityutskiy 
2460f57cb188SArtem Bityutskiy 	ubifs_assert(dbg_is_tst_rcvry(c));
24611e51764aSArtem Bityutskiy 
2462d27462a5SArtem Bityutskiy 	if (!d->pc_cnt) {
2463d27462a5SArtem Bityutskiy 		/* First call - decide delay to the power cut */
24641e51764aSArtem Bityutskiy 		if (chance(1, 2)) {
2465a7fa94a9SArtem Bityutskiy 			unsigned long delay;
24661e51764aSArtem Bityutskiy 
24671e51764aSArtem Bityutskiy 			if (chance(1, 2)) {
2468d27462a5SArtem Bityutskiy 				d->pc_delay = 1;
2469443b39cdSRichard Weinberger 				/* Fail within 1 minute */
24703d251a5bSAkinobu Mita 				delay = prandom_u32() % 60000;
2471a7fa94a9SArtem Bityutskiy 				d->pc_timeout = jiffies;
2472a7fa94a9SArtem Bityutskiy 				d->pc_timeout += msecs_to_jiffies(delay);
2473235c362bSSheng Yong 				ubifs_warn(c, "failing after %lums", delay);
24741e51764aSArtem Bityutskiy 			} else {
2475d27462a5SArtem Bityutskiy 				d->pc_delay = 2;
24763d251a5bSAkinobu Mita 				delay = prandom_u32() % 10000;
2477a7fa94a9SArtem Bityutskiy 				/* Fail within 10000 operations */
2478d27462a5SArtem Bityutskiy 				d->pc_cnt_max = delay;
2479235c362bSSheng Yong 				ubifs_warn(c, "failing after %lu calls", delay);
24801e51764aSArtem Bityutskiy 			}
24811e51764aSArtem Bityutskiy 		}
2482a7fa94a9SArtem Bityutskiy 
2483d27462a5SArtem Bityutskiy 		d->pc_cnt += 1;
24841e51764aSArtem Bityutskiy 	}
2485a7fa94a9SArtem Bityutskiy 
24861e51764aSArtem Bityutskiy 	/* Determine if failure delay has expired */
2487a7fa94a9SArtem Bityutskiy 	if (d->pc_delay == 1 && time_before(jiffies, d->pc_timeout))
24881e51764aSArtem Bityutskiy 			return 0;
2489a7fa94a9SArtem Bityutskiy 	if (d->pc_delay == 2 && d->pc_cnt++ < d->pc_cnt_max)
24901e51764aSArtem Bityutskiy 			return 0;
2491a7fa94a9SArtem Bityutskiy 
24921e51764aSArtem Bityutskiy 	if (lnum == UBIFS_SB_LNUM) {
2493a7fa94a9SArtem Bityutskiy 		if (write && chance(1, 2))
24941e51764aSArtem Bityutskiy 			return 0;
2495a7fa94a9SArtem Bityutskiy 		if (chance(19, 20))
24961e51764aSArtem Bityutskiy 			return 0;
2497235c362bSSheng Yong 		ubifs_warn(c, "failing in super block LEB %d", lnum);
24981e51764aSArtem Bityutskiy 	} else if (lnum == UBIFS_MST_LNUM || lnum == UBIFS_MST_LNUM + 1) {
24991e51764aSArtem Bityutskiy 		if (chance(19, 20))
25001e51764aSArtem Bityutskiy 			return 0;
2501235c362bSSheng Yong 		ubifs_warn(c, "failing in master LEB %d", lnum);
25021e51764aSArtem Bityutskiy 	} else if (lnum >= UBIFS_LOG_LNUM && lnum <= c->log_last) {
2503a7fa94a9SArtem Bityutskiy 		if (write && chance(99, 100))
25041e51764aSArtem Bityutskiy 			return 0;
2505a7fa94a9SArtem Bityutskiy 		if (chance(399, 400))
25061e51764aSArtem Bityutskiy 			return 0;
2507235c362bSSheng Yong 		ubifs_warn(c, "failing in log LEB %d", lnum);
25081e51764aSArtem Bityutskiy 	} else if (lnum >= c->lpt_first && lnum <= c->lpt_last) {
2509a7fa94a9SArtem Bityutskiy 		if (write && chance(7, 8))
25101e51764aSArtem Bityutskiy 			return 0;
2511a7fa94a9SArtem Bityutskiy 		if (chance(19, 20))
25121e51764aSArtem Bityutskiy 			return 0;
2513235c362bSSheng Yong 		ubifs_warn(c, "failing in LPT LEB %d", lnum);
25141e51764aSArtem Bityutskiy 	} else if (lnum >= c->orph_first && lnum <= c->orph_last) {
2515a7fa94a9SArtem Bityutskiy 		if (write && chance(1, 2))
25161e51764aSArtem Bityutskiy 			return 0;
2517a7fa94a9SArtem Bityutskiy 		if (chance(9, 10))
25181e51764aSArtem Bityutskiy 			return 0;
2519235c362bSSheng Yong 		ubifs_warn(c, "failing in orphan LEB %d", lnum);
25201e51764aSArtem Bityutskiy 	} else if (lnum == c->ihead_lnum) {
25211e51764aSArtem Bityutskiy 		if (chance(99, 100))
25221e51764aSArtem Bityutskiy 			return 0;
2523235c362bSSheng Yong 		ubifs_warn(c, "failing in index head LEB %d", lnum);
25241e51764aSArtem Bityutskiy 	} else if (c->jheads && lnum == c->jheads[GCHD].wbuf.lnum) {
25251e51764aSArtem Bityutskiy 		if (chance(9, 10))
25261e51764aSArtem Bityutskiy 			return 0;
2527235c362bSSheng Yong 		ubifs_warn(c, "failing in GC head LEB %d", lnum);
25281e51764aSArtem Bityutskiy 	} else if (write && !RB_EMPTY_ROOT(&c->buds) &&
25291e51764aSArtem Bityutskiy 		   !ubifs_search_bud(c, lnum)) {
25301e51764aSArtem Bityutskiy 		if (chance(19, 20))
25311e51764aSArtem Bityutskiy 			return 0;
2532235c362bSSheng Yong 		ubifs_warn(c, "failing in non-bud LEB %d", lnum);
25331e51764aSArtem Bityutskiy 	} else if (c->cmt_state == COMMIT_RUNNING_BACKGROUND ||
25341e51764aSArtem Bityutskiy 		   c->cmt_state == COMMIT_RUNNING_REQUIRED) {
25351e51764aSArtem Bityutskiy 		if (chance(999, 1000))
25361e51764aSArtem Bityutskiy 			return 0;
2537235c362bSSheng Yong 		ubifs_warn(c, "failing in bud LEB %d commit running", lnum);
25381e51764aSArtem Bityutskiy 	} else {
25391e51764aSArtem Bityutskiy 		if (chance(9999, 10000))
25401e51764aSArtem Bityutskiy 			return 0;
2541235c362bSSheng Yong 		ubifs_warn(c, "failing in bud LEB %d commit not running", lnum);
25421e51764aSArtem Bityutskiy 	}
254324a4f800SArtem Bityutskiy 
2544d27462a5SArtem Bityutskiy 	d->pc_happened = 1;
2545235c362bSSheng Yong 	ubifs_warn(c, "========== Power cut emulated ==========");
25461e51764aSArtem Bityutskiy 	dump_stack();
25471e51764aSArtem Bityutskiy 	return 1;
25481e51764aSArtem Bityutskiy }
25491e51764aSArtem Bityutskiy 
25508089ed79SArtem Bityutskiy static int corrupt_data(const struct ubifs_info *c, const void *buf,
25518089ed79SArtem Bityutskiy 			unsigned int len)
25521e51764aSArtem Bityutskiy {
2553cdd9fa8dSAkinobu Mita 	unsigned int from, to, ffs = chance(1, 2);
25541e51764aSArtem Bityutskiy 	unsigned char *p = (void *)buf;
25551e51764aSArtem Bityutskiy 
255658a4e237SMats Kärrman 	from = prandom_u32() % len;
255758a4e237SMats Kärrman 	/* Corruption span max to end of write unit */
255858a4e237SMats Kärrman 	to = min(len, ALIGN(from + 1, c->max_write_size));
2559a7fa94a9SArtem Bityutskiy 
2560235c362bSSheng Yong 	ubifs_warn(c, "filled bytes %u-%u with %s", from, to - 1,
2561a7fa94a9SArtem Bityutskiy 		   ffs ? "0xFFs" : "random data");
2562a7fa94a9SArtem Bityutskiy 
2563a7fa94a9SArtem Bityutskiy 	if (ffs)
2564cdd9fa8dSAkinobu Mita 		memset(p + from, 0xFF, to - from);
2565a7fa94a9SArtem Bityutskiy 	else
2566cdd9fa8dSAkinobu Mita 		prandom_bytes(p + from, to - from);
25678089ed79SArtem Bityutskiy 
25688089ed79SArtem Bityutskiy 	return to;
25691e51764aSArtem Bityutskiy }
25701e51764aSArtem Bityutskiy 
2571f57cb188SArtem Bityutskiy int dbg_leb_write(struct ubifs_info *c, int lnum, const void *buf,
2572b36a261eSRichard Weinberger 		  int offs, int len)
25731e51764aSArtem Bityutskiy {
257416dfd804SAdrian Hunter 	int err, failing;
25751e51764aSArtem Bityutskiy 
25768f6983abSshengyong 	if (dbg_is_power_cut(c))
25771a29af8bSArtem Bityutskiy 		return -EROFS;
2578d27462a5SArtem Bityutskiy 
2579d27462a5SArtem Bityutskiy 	failing = power_cut_emulated(c, lnum, 1);
2580c23e9b75SMats Kärrman 	if (failing) {
25818089ed79SArtem Bityutskiy 		len = corrupt_data(c, buf, len);
2582235c362bSSheng Yong 		ubifs_warn(c, "actually write %d bytes to LEB %d:%d (the buffer was corrupted)",
25838089ed79SArtem Bityutskiy 			   len, lnum, offs);
2584c23e9b75SMats Kärrman 	}
2585b36a261eSRichard Weinberger 	err = ubi_leb_write(c->ubi, lnum, buf, offs, len);
25861e51764aSArtem Bityutskiy 	if (err)
25871e51764aSArtem Bityutskiy 		return err;
258816dfd804SAdrian Hunter 	if (failing)
25891a29af8bSArtem Bityutskiy 		return -EROFS;
25901e51764aSArtem Bityutskiy 	return 0;
25911e51764aSArtem Bityutskiy }
25921e51764aSArtem Bityutskiy 
2593f57cb188SArtem Bityutskiy int dbg_leb_change(struct ubifs_info *c, int lnum, const void *buf,
2594b36a261eSRichard Weinberger 		   int len)
25951e51764aSArtem Bityutskiy {
25961e51764aSArtem Bityutskiy 	int err;
25971e51764aSArtem Bityutskiy 
25988f6983abSshengyong 	if (dbg_is_power_cut(c))
2599d27462a5SArtem Bityutskiy 		return -EROFS;
2600d27462a5SArtem Bityutskiy 	if (power_cut_emulated(c, lnum, 1))
26011a29af8bSArtem Bityutskiy 		return -EROFS;
2602b36a261eSRichard Weinberger 	err = ubi_leb_change(c->ubi, lnum, buf, len);
26031e51764aSArtem Bityutskiy 	if (err)
26041e51764aSArtem Bityutskiy 		return err;
2605d27462a5SArtem Bityutskiy 	if (power_cut_emulated(c, lnum, 1))
26061a29af8bSArtem Bityutskiy 		return -EROFS;
26071e51764aSArtem Bityutskiy 	return 0;
26081e51764aSArtem Bityutskiy }
26091e51764aSArtem Bityutskiy 
2610f57cb188SArtem Bityutskiy int dbg_leb_unmap(struct ubifs_info *c, int lnum)
26111e51764aSArtem Bityutskiy {
26121e51764aSArtem Bityutskiy 	int err;
26131e51764aSArtem Bityutskiy 
26148f6983abSshengyong 	if (dbg_is_power_cut(c))
2615d27462a5SArtem Bityutskiy 		return -EROFS;
2616d27462a5SArtem Bityutskiy 	if (power_cut_emulated(c, lnum, 0))
26171a29af8bSArtem Bityutskiy 		return -EROFS;
2618f57cb188SArtem Bityutskiy 	err = ubi_leb_unmap(c->ubi, lnum);
26191e51764aSArtem Bityutskiy 	if (err)
26201e51764aSArtem Bityutskiy 		return err;
2621d27462a5SArtem Bityutskiy 	if (power_cut_emulated(c, lnum, 0))
26221a29af8bSArtem Bityutskiy 		return -EROFS;
26231e51764aSArtem Bityutskiy 	return 0;
26241e51764aSArtem Bityutskiy }
26251e51764aSArtem Bityutskiy 
2626b36a261eSRichard Weinberger int dbg_leb_map(struct ubifs_info *c, int lnum)
26271e51764aSArtem Bityutskiy {
26281e51764aSArtem Bityutskiy 	int err;
26291e51764aSArtem Bityutskiy 
26308f6983abSshengyong 	if (dbg_is_power_cut(c))
2631d27462a5SArtem Bityutskiy 		return -EROFS;
2632d27462a5SArtem Bityutskiy 	if (power_cut_emulated(c, lnum, 0))
26331a29af8bSArtem Bityutskiy 		return -EROFS;
2634b36a261eSRichard Weinberger 	err = ubi_leb_map(c->ubi, lnum);
26351e51764aSArtem Bityutskiy 	if (err)
26361e51764aSArtem Bityutskiy 		return err;
2637d27462a5SArtem Bityutskiy 	if (power_cut_emulated(c, lnum, 0))
26381a29af8bSArtem Bityutskiy 		return -EROFS;
26391e51764aSArtem Bityutskiy 	return 0;
26401e51764aSArtem Bityutskiy }
26411e51764aSArtem Bityutskiy 
2642552ff317SArtem Bityutskiy /*
2643552ff317SArtem Bityutskiy  * Root directory for UBIFS stuff in debugfs. Contains sub-directories which
2644552ff317SArtem Bityutskiy  * contain the stuff specific to particular file-system mounts.
2645552ff317SArtem Bityutskiy  */
264684abf972SArtem Bityutskiy static struct dentry *dfs_rootdir;
2647552ff317SArtem Bityutskiy 
26487dae997dSArtem Bityutskiy static int dfs_file_open(struct inode *inode, struct file *file)
2649552ff317SArtem Bityutskiy {
2650552ff317SArtem Bityutskiy 	file->private_data = inode->i_private;
26511bbfc848SArtem Bityutskiy 	return nonseekable_open(inode, file);
2652552ff317SArtem Bityutskiy }
2653552ff317SArtem Bityutskiy 
265428488fc2SArtem Bityutskiy /**
265528488fc2SArtem Bityutskiy  * provide_user_output - provide output to the user reading a debugfs file.
265628488fc2SArtem Bityutskiy  * @val: boolean value for the answer
265728488fc2SArtem Bityutskiy  * @u: the buffer to store the answer at
265828488fc2SArtem Bityutskiy  * @count: size of the buffer
265928488fc2SArtem Bityutskiy  * @ppos: position in the @u output buffer
266028488fc2SArtem Bityutskiy  *
266128488fc2SArtem Bityutskiy  * This is a simple helper function which stores @val boolean value in the user
266228488fc2SArtem Bityutskiy  * buffer when the user reads one of UBIFS debugfs files. Returns amount of
266328488fc2SArtem Bityutskiy  * bytes written to @u in case of success and a negative error code in case of
266428488fc2SArtem Bityutskiy  * failure.
266528488fc2SArtem Bityutskiy  */
266628488fc2SArtem Bityutskiy static int provide_user_output(int val, char __user *u, size_t count,
266728488fc2SArtem Bityutskiy 			       loff_t *ppos)
266828488fc2SArtem Bityutskiy {
266928488fc2SArtem Bityutskiy 	char buf[3];
267028488fc2SArtem Bityutskiy 
267128488fc2SArtem Bityutskiy 	if (val)
267228488fc2SArtem Bityutskiy 		buf[0] = '1';
267328488fc2SArtem Bityutskiy 	else
267428488fc2SArtem Bityutskiy 		buf[0] = '0';
267528488fc2SArtem Bityutskiy 	buf[1] = '\n';
267628488fc2SArtem Bityutskiy 	buf[2] = 0x00;
267728488fc2SArtem Bityutskiy 
267828488fc2SArtem Bityutskiy 	return simple_read_from_buffer(u, count, ppos, buf, 2);
267928488fc2SArtem Bityutskiy }
268028488fc2SArtem Bityutskiy 
268181e79d38SArtem Bityutskiy static ssize_t dfs_file_read(struct file *file, char __user *u, size_t count,
268281e79d38SArtem Bityutskiy 			     loff_t *ppos)
268381e79d38SArtem Bityutskiy {
268481e79d38SArtem Bityutskiy 	struct dentry *dent = file->f_path.dentry;
268581e79d38SArtem Bityutskiy 	struct ubifs_info *c = file->private_data;
268681e79d38SArtem Bityutskiy 	struct ubifs_debug_info *d = c->dbg;
268781e79d38SArtem Bityutskiy 	int val;
268881e79d38SArtem Bityutskiy 
268981e79d38SArtem Bityutskiy 	if (dent == d->dfs_chk_gen)
269081e79d38SArtem Bityutskiy 		val = d->chk_gen;
269181e79d38SArtem Bityutskiy 	else if (dent == d->dfs_chk_index)
269281e79d38SArtem Bityutskiy 		val = d->chk_index;
269381e79d38SArtem Bityutskiy 	else if (dent == d->dfs_chk_orph)
269481e79d38SArtem Bityutskiy 		val = d->chk_orph;
269581e79d38SArtem Bityutskiy 	else if (dent == d->dfs_chk_lprops)
269681e79d38SArtem Bityutskiy 		val = d->chk_lprops;
269781e79d38SArtem Bityutskiy 	else if (dent == d->dfs_chk_fs)
269881e79d38SArtem Bityutskiy 		val = d->chk_fs;
269981e79d38SArtem Bityutskiy 	else if (dent == d->dfs_tst_rcvry)
270081e79d38SArtem Bityutskiy 		val = d->tst_rcvry;
270106bef945SArtem Bityutskiy 	else if (dent == d->dfs_ro_error)
270206bef945SArtem Bityutskiy 		val = c->ro_error;
270381e79d38SArtem Bityutskiy 	else
270481e79d38SArtem Bityutskiy 		return -EINVAL;
270581e79d38SArtem Bityutskiy 
270628488fc2SArtem Bityutskiy 	return provide_user_output(val, u, count, ppos);
270728488fc2SArtem Bityutskiy }
270881e79d38SArtem Bityutskiy 
270928488fc2SArtem Bityutskiy /**
271028488fc2SArtem Bityutskiy  * interpret_user_input - interpret user debugfs file input.
271128488fc2SArtem Bityutskiy  * @u: user-provided buffer with the input
271228488fc2SArtem Bityutskiy  * @count: buffer size
271328488fc2SArtem Bityutskiy  *
271428488fc2SArtem Bityutskiy  * This is a helper function which interpret user input to a boolean UBIFS
271528488fc2SArtem Bityutskiy  * debugfs file. Returns %0 or %1 in case of success and a negative error code
271628488fc2SArtem Bityutskiy  * in case of failure.
271728488fc2SArtem Bityutskiy  */
271828488fc2SArtem Bityutskiy static int interpret_user_input(const char __user *u, size_t count)
271928488fc2SArtem Bityutskiy {
272028488fc2SArtem Bityutskiy 	size_t buf_size;
272128488fc2SArtem Bityutskiy 	char buf[8];
272228488fc2SArtem Bityutskiy 
272328488fc2SArtem Bityutskiy 	buf_size = min_t(size_t, count, (sizeof(buf) - 1));
272428488fc2SArtem Bityutskiy 	if (copy_from_user(buf, u, buf_size))
272528488fc2SArtem Bityutskiy 		return -EFAULT;
272628488fc2SArtem Bityutskiy 
272728488fc2SArtem Bityutskiy 	if (buf[0] == '1')
272828488fc2SArtem Bityutskiy 		return 1;
272928488fc2SArtem Bityutskiy 	else if (buf[0] == '0')
273028488fc2SArtem Bityutskiy 		return 0;
273128488fc2SArtem Bityutskiy 
273228488fc2SArtem Bityutskiy 	return -EINVAL;
273381e79d38SArtem Bityutskiy }
273481e79d38SArtem Bityutskiy 
273581e79d38SArtem Bityutskiy static ssize_t dfs_file_write(struct file *file, const char __user *u,
2736552ff317SArtem Bityutskiy 			      size_t count, loff_t *ppos)
2737552ff317SArtem Bityutskiy {
2738552ff317SArtem Bityutskiy 	struct ubifs_info *c = file->private_data;
2739552ff317SArtem Bityutskiy 	struct ubifs_debug_info *d = c->dbg;
274081e79d38SArtem Bityutskiy 	struct dentry *dent = file->f_path.dentry;
274181e79d38SArtem Bityutskiy 	int val;
2742552ff317SArtem Bityutskiy 
274381e79d38SArtem Bityutskiy 	/*
274424a4f800SArtem Bityutskiy 	 * TODO: this is racy - the file-system might have already been
274524a4f800SArtem Bityutskiy 	 * unmounted and we'd oops in this case. The plan is to fix it with
274624a4f800SArtem Bityutskiy 	 * help of 'iterate_supers_type()' which we should have in v3.0: when
274724a4f800SArtem Bityutskiy 	 * a debugfs opened, we rember FS's UUID in file->private_data. Then
274824a4f800SArtem Bityutskiy 	 * whenever we access the FS via a debugfs file, we iterate all UBIFS
274924a4f800SArtem Bityutskiy 	 * superblocks and fine the one with the same UUID, and take the
275024a4f800SArtem Bityutskiy 	 * locking right.
275124a4f800SArtem Bityutskiy 	 *
275224a4f800SArtem Bityutskiy 	 * The other way to go suggested by Al Viro is to create a separate
275324a4f800SArtem Bityutskiy 	 * 'ubifs-debug' file-system instead.
275481e79d38SArtem Bityutskiy 	 */
275581e79d38SArtem Bityutskiy 	if (file->f_path.dentry == d->dfs_dump_lprops) {
2756edf6be24SArtem Bityutskiy 		ubifs_dump_lprops(c);
275781e79d38SArtem Bityutskiy 		return count;
275881e79d38SArtem Bityutskiy 	}
275981e79d38SArtem Bityutskiy 	if (file->f_path.dentry == d->dfs_dump_budg) {
2760edf6be24SArtem Bityutskiy 		ubifs_dump_budg(c, &c->bi);
276181e79d38SArtem Bityutskiy 		return count;
276281e79d38SArtem Bityutskiy 	}
276381e79d38SArtem Bityutskiy 	if (file->f_path.dentry == d->dfs_dump_tnc) {
2764552ff317SArtem Bityutskiy 		mutex_lock(&c->tnc_mutex);
2765edf6be24SArtem Bityutskiy 		ubifs_dump_tnc(c);
2766552ff317SArtem Bityutskiy 		mutex_unlock(&c->tnc_mutex);
276781e79d38SArtem Bityutskiy 		return count;
276881e79d38SArtem Bityutskiy 	}
276981e79d38SArtem Bityutskiy 
277028488fc2SArtem Bityutskiy 	val = interpret_user_input(u, count);
277128488fc2SArtem Bityutskiy 	if (val < 0)
277228488fc2SArtem Bityutskiy 		return val;
277381e79d38SArtem Bityutskiy 
277481e79d38SArtem Bityutskiy 	if (dent == d->dfs_chk_gen)
277581e79d38SArtem Bityutskiy 		d->chk_gen = val;
277681e79d38SArtem Bityutskiy 	else if (dent == d->dfs_chk_index)
277781e79d38SArtem Bityutskiy 		d->chk_index = val;
277881e79d38SArtem Bityutskiy 	else if (dent == d->dfs_chk_orph)
277981e79d38SArtem Bityutskiy 		d->chk_orph = val;
278081e79d38SArtem Bityutskiy 	else if (dent == d->dfs_chk_lprops)
278181e79d38SArtem Bityutskiy 		d->chk_lprops = val;
278281e79d38SArtem Bityutskiy 	else if (dent == d->dfs_chk_fs)
278381e79d38SArtem Bityutskiy 		d->chk_fs = val;
278481e79d38SArtem Bityutskiy 	else if (dent == d->dfs_tst_rcvry)
278581e79d38SArtem Bityutskiy 		d->tst_rcvry = val;
278606bef945SArtem Bityutskiy 	else if (dent == d->dfs_ro_error)
278706bef945SArtem Bityutskiy 		c->ro_error = !!val;
278881e79d38SArtem Bityutskiy 	else
2789552ff317SArtem Bityutskiy 		return -EINVAL;
2790552ff317SArtem Bityutskiy 
2791552ff317SArtem Bityutskiy 	return count;
2792552ff317SArtem Bityutskiy }
2793552ff317SArtem Bityutskiy 
279484abf972SArtem Bityutskiy static const struct file_operations dfs_fops = {
27957dae997dSArtem Bityutskiy 	.open = dfs_file_open,
279681e79d38SArtem Bityutskiy 	.read = dfs_file_read,
279781e79d38SArtem Bityutskiy 	.write = dfs_file_write,
2798552ff317SArtem Bityutskiy 	.owner = THIS_MODULE,
27991bbfc848SArtem Bityutskiy 	.llseek = no_llseek,
2800552ff317SArtem Bityutskiy };
2801552ff317SArtem Bityutskiy 
2802552ff317SArtem Bityutskiy /**
2803552ff317SArtem Bityutskiy  * dbg_debugfs_init_fs - initialize debugfs for UBIFS instance.
2804552ff317SArtem Bityutskiy  * @c: UBIFS file-system description object
2805552ff317SArtem Bityutskiy  *
2806552ff317SArtem Bityutskiy  * This function creates all debugfs files for this instance of UBIFS. Returns
2807552ff317SArtem Bityutskiy  * zero in case of success and a negative error code in case of failure.
2808552ff317SArtem Bityutskiy  *
2809552ff317SArtem Bityutskiy  * Note, the only reason we have not merged this function with the
2810552ff317SArtem Bityutskiy  * 'ubifs_debugging_init()' function is because it is better to initialize
2811552ff317SArtem Bityutskiy  * debugfs interfaces at the very end of the mount process, and remove them at
2812552ff317SArtem Bityutskiy  * the very beginning of the mount process.
2813552ff317SArtem Bityutskiy  */
2814552ff317SArtem Bityutskiy int dbg_debugfs_init_fs(struct ubifs_info *c)
2815552ff317SArtem Bityutskiy {
2816ae380ce0SArtem Bityutskiy 	int err, n;
2817552ff317SArtem Bityutskiy 	const char *fname;
2818552ff317SArtem Bityutskiy 	struct dentry *dent;
2819552ff317SArtem Bityutskiy 	struct ubifs_debug_info *d = c->dbg;
2820552ff317SArtem Bityutskiy 
28212d4cf5aeSBrian Norris 	if (!IS_ENABLED(CONFIG_DEBUG_FS))
2822818039c7SArtem Bityutskiy 		return 0;
2823818039c7SArtem Bityutskiy 
2824ae380ce0SArtem Bityutskiy 	n = snprintf(d->dfs_dir_name, UBIFS_DFS_DIR_LEN + 1, UBIFS_DFS_DIR_NAME,
2825ae380ce0SArtem Bityutskiy 		     c->vi.ubi_num, c->vi.vol_id);
2826ae380ce0SArtem Bityutskiy 	if (n == UBIFS_DFS_DIR_LEN) {
2827ae380ce0SArtem Bityutskiy 		/* The array size is too small */
2828ae380ce0SArtem Bityutskiy 		fname = UBIFS_DFS_DIR_NAME;
2829ae380ce0SArtem Bityutskiy 		dent = ERR_PTR(-EINVAL);
2830ae380ce0SArtem Bityutskiy 		goto out;
2831ae380ce0SArtem Bityutskiy 	}
2832ae380ce0SArtem Bityutskiy 
2833cc6a86b9SArtem Bityutskiy 	fname = d->dfs_dir_name;
2834cc6a86b9SArtem Bityutskiy 	dent = debugfs_create_dir(fname, dfs_rootdir);
283595169535SArtem Bityutskiy 	if (IS_ERR_OR_NULL(dent))
2836552ff317SArtem Bityutskiy 		goto out;
2837cc6a86b9SArtem Bityutskiy 	d->dfs_dir = dent;
2838552ff317SArtem Bityutskiy 
2839552ff317SArtem Bityutskiy 	fname = "dump_lprops";
28408c559d30SVasiliy Kulikov 	dent = debugfs_create_file(fname, S_IWUSR, d->dfs_dir, c, &dfs_fops);
284195169535SArtem Bityutskiy 	if (IS_ERR_OR_NULL(dent))
2842552ff317SArtem Bityutskiy 		goto out_remove;
284384abf972SArtem Bityutskiy 	d->dfs_dump_lprops = dent;
2844552ff317SArtem Bityutskiy 
2845552ff317SArtem Bityutskiy 	fname = "dump_budg";
28468c559d30SVasiliy Kulikov 	dent = debugfs_create_file(fname, S_IWUSR, d->dfs_dir, c, &dfs_fops);
284795169535SArtem Bityutskiy 	if (IS_ERR_OR_NULL(dent))
2848552ff317SArtem Bityutskiy 		goto out_remove;
284984abf972SArtem Bityutskiy 	d->dfs_dump_budg = dent;
2850552ff317SArtem Bityutskiy 
2851552ff317SArtem Bityutskiy 	fname = "dump_tnc";
28528c559d30SVasiliy Kulikov 	dent = debugfs_create_file(fname, S_IWUSR, d->dfs_dir, c, &dfs_fops);
285395169535SArtem Bityutskiy 	if (IS_ERR_OR_NULL(dent))
2854552ff317SArtem Bityutskiy 		goto out_remove;
285584abf972SArtem Bityutskiy 	d->dfs_dump_tnc = dent;
2856552ff317SArtem Bityutskiy 
285781e79d38SArtem Bityutskiy 	fname = "chk_general";
285881e79d38SArtem Bityutskiy 	dent = debugfs_create_file(fname, S_IRUSR | S_IWUSR, d->dfs_dir, c,
285981e79d38SArtem Bityutskiy 				   &dfs_fops);
286081e79d38SArtem Bityutskiy 	if (IS_ERR_OR_NULL(dent))
286181e79d38SArtem Bityutskiy 		goto out_remove;
286281e79d38SArtem Bityutskiy 	d->dfs_chk_gen = dent;
286381e79d38SArtem Bityutskiy 
286481e79d38SArtem Bityutskiy 	fname = "chk_index";
286581e79d38SArtem Bityutskiy 	dent = debugfs_create_file(fname, S_IRUSR | S_IWUSR, d->dfs_dir, c,
286681e79d38SArtem Bityutskiy 				   &dfs_fops);
286781e79d38SArtem Bityutskiy 	if (IS_ERR_OR_NULL(dent))
286881e79d38SArtem Bityutskiy 		goto out_remove;
286981e79d38SArtem Bityutskiy 	d->dfs_chk_index = dent;
287081e79d38SArtem Bityutskiy 
287181e79d38SArtem Bityutskiy 	fname = "chk_orphans";
287281e79d38SArtem Bityutskiy 	dent = debugfs_create_file(fname, S_IRUSR | S_IWUSR, d->dfs_dir, c,
287381e79d38SArtem Bityutskiy 				   &dfs_fops);
287481e79d38SArtem Bityutskiy 	if (IS_ERR_OR_NULL(dent))
287581e79d38SArtem Bityutskiy 		goto out_remove;
287681e79d38SArtem Bityutskiy 	d->dfs_chk_orph = dent;
287781e79d38SArtem Bityutskiy 
287881e79d38SArtem Bityutskiy 	fname = "chk_lprops";
287981e79d38SArtem Bityutskiy 	dent = debugfs_create_file(fname, S_IRUSR | S_IWUSR, d->dfs_dir, c,
288081e79d38SArtem Bityutskiy 				   &dfs_fops);
288181e79d38SArtem Bityutskiy 	if (IS_ERR_OR_NULL(dent))
288281e79d38SArtem Bityutskiy 		goto out_remove;
288381e79d38SArtem Bityutskiy 	d->dfs_chk_lprops = dent;
288481e79d38SArtem Bityutskiy 
288581e79d38SArtem Bityutskiy 	fname = "chk_fs";
288681e79d38SArtem Bityutskiy 	dent = debugfs_create_file(fname, S_IRUSR | S_IWUSR, d->dfs_dir, c,
288781e79d38SArtem Bityutskiy 				   &dfs_fops);
288881e79d38SArtem Bityutskiy 	if (IS_ERR_OR_NULL(dent))
288981e79d38SArtem Bityutskiy 		goto out_remove;
289081e79d38SArtem Bityutskiy 	d->dfs_chk_fs = dent;
289181e79d38SArtem Bityutskiy 
289281e79d38SArtem Bityutskiy 	fname = "tst_recovery";
289381e79d38SArtem Bityutskiy 	dent = debugfs_create_file(fname, S_IRUSR | S_IWUSR, d->dfs_dir, c,
289481e79d38SArtem Bityutskiy 				   &dfs_fops);
289581e79d38SArtem Bityutskiy 	if (IS_ERR_OR_NULL(dent))
289681e79d38SArtem Bityutskiy 		goto out_remove;
289781e79d38SArtem Bityutskiy 	d->dfs_tst_rcvry = dent;
289881e79d38SArtem Bityutskiy 
289906bef945SArtem Bityutskiy 	fname = "ro_error";
290006bef945SArtem Bityutskiy 	dent = debugfs_create_file(fname, S_IRUSR | S_IWUSR, d->dfs_dir, c,
290106bef945SArtem Bityutskiy 				   &dfs_fops);
290206bef945SArtem Bityutskiy 	if (IS_ERR_OR_NULL(dent))
290306bef945SArtem Bityutskiy 		goto out_remove;
290406bef945SArtem Bityutskiy 	d->dfs_ro_error = dent;
290506bef945SArtem Bityutskiy 
2906552ff317SArtem Bityutskiy 	return 0;
2907552ff317SArtem Bityutskiy 
2908552ff317SArtem Bityutskiy out_remove:
2909cc6a86b9SArtem Bityutskiy 	debugfs_remove_recursive(d->dfs_dir);
2910cc6a86b9SArtem Bityutskiy out:
291195169535SArtem Bityutskiy 	err = dent ? PTR_ERR(dent) : -ENODEV;
2912235c362bSSheng Yong 	ubifs_err(c, "cannot create \"%s\" debugfs file or directory, error %d\n",
2913552ff317SArtem Bityutskiy 		  fname, err);
2914552ff317SArtem Bityutskiy 	return err;
2915552ff317SArtem Bityutskiy }
2916552ff317SArtem Bityutskiy 
2917552ff317SArtem Bityutskiy /**
2918552ff317SArtem Bityutskiy  * dbg_debugfs_exit_fs - remove all debugfs files.
2919552ff317SArtem Bityutskiy  * @c: UBIFS file-system description object
2920552ff317SArtem Bityutskiy  */
2921552ff317SArtem Bityutskiy void dbg_debugfs_exit_fs(struct ubifs_info *c)
2922552ff317SArtem Bityutskiy {
29232d4cf5aeSBrian Norris 	if (IS_ENABLED(CONFIG_DEBUG_FS))
292484abf972SArtem Bityutskiy 		debugfs_remove_recursive(c->dbg->dfs_dir);
2925552ff317SArtem Bityutskiy }
2926552ff317SArtem Bityutskiy 
2927e7717060SArtem Bityutskiy struct ubifs_global_debug_info ubifs_dbg;
2928e7717060SArtem Bityutskiy 
2929e7717060SArtem Bityutskiy static struct dentry *dfs_chk_gen;
2930e7717060SArtem Bityutskiy static struct dentry *dfs_chk_index;
2931e7717060SArtem Bityutskiy static struct dentry *dfs_chk_orph;
2932e7717060SArtem Bityutskiy static struct dentry *dfs_chk_lprops;
2933e7717060SArtem Bityutskiy static struct dentry *dfs_chk_fs;
2934e7717060SArtem Bityutskiy static struct dentry *dfs_tst_rcvry;
2935e7717060SArtem Bityutskiy 
2936e7717060SArtem Bityutskiy static ssize_t dfs_global_file_read(struct file *file, char __user *u,
2937e7717060SArtem Bityutskiy 				    size_t count, loff_t *ppos)
2938e7717060SArtem Bityutskiy {
2939e7717060SArtem Bityutskiy 	struct dentry *dent = file->f_path.dentry;
2940e7717060SArtem Bityutskiy 	int val;
2941e7717060SArtem Bityutskiy 
2942e7717060SArtem Bityutskiy 	if (dent == dfs_chk_gen)
2943e7717060SArtem Bityutskiy 		val = ubifs_dbg.chk_gen;
2944e7717060SArtem Bityutskiy 	else if (dent == dfs_chk_index)
2945e7717060SArtem Bityutskiy 		val = ubifs_dbg.chk_index;
2946e7717060SArtem Bityutskiy 	else if (dent == dfs_chk_orph)
2947e7717060SArtem Bityutskiy 		val = ubifs_dbg.chk_orph;
2948e7717060SArtem Bityutskiy 	else if (dent == dfs_chk_lprops)
2949e7717060SArtem Bityutskiy 		val = ubifs_dbg.chk_lprops;
2950e7717060SArtem Bityutskiy 	else if (dent == dfs_chk_fs)
2951e7717060SArtem Bityutskiy 		val = ubifs_dbg.chk_fs;
2952e7717060SArtem Bityutskiy 	else if (dent == dfs_tst_rcvry)
2953e7717060SArtem Bityutskiy 		val = ubifs_dbg.tst_rcvry;
2954e7717060SArtem Bityutskiy 	else
2955e7717060SArtem Bityutskiy 		return -EINVAL;
2956e7717060SArtem Bityutskiy 
2957e7717060SArtem Bityutskiy 	return provide_user_output(val, u, count, ppos);
2958e7717060SArtem Bityutskiy }
2959e7717060SArtem Bityutskiy 
2960e7717060SArtem Bityutskiy static ssize_t dfs_global_file_write(struct file *file, const char __user *u,
2961e7717060SArtem Bityutskiy 				     size_t count, loff_t *ppos)
2962e7717060SArtem Bityutskiy {
2963e7717060SArtem Bityutskiy 	struct dentry *dent = file->f_path.dentry;
2964e7717060SArtem Bityutskiy 	int val;
2965e7717060SArtem Bityutskiy 
2966e7717060SArtem Bityutskiy 	val = interpret_user_input(u, count);
2967e7717060SArtem Bityutskiy 	if (val < 0)
2968e7717060SArtem Bityutskiy 		return val;
2969e7717060SArtem Bityutskiy 
2970e7717060SArtem Bityutskiy 	if (dent == dfs_chk_gen)
2971e7717060SArtem Bityutskiy 		ubifs_dbg.chk_gen = val;
2972e7717060SArtem Bityutskiy 	else if (dent == dfs_chk_index)
2973e7717060SArtem Bityutskiy 		ubifs_dbg.chk_index = val;
2974e7717060SArtem Bityutskiy 	else if (dent == dfs_chk_orph)
2975e7717060SArtem Bityutskiy 		ubifs_dbg.chk_orph = val;
2976e7717060SArtem Bityutskiy 	else if (dent == dfs_chk_lprops)
2977e7717060SArtem Bityutskiy 		ubifs_dbg.chk_lprops = val;
2978e7717060SArtem Bityutskiy 	else if (dent == dfs_chk_fs)
2979e7717060SArtem Bityutskiy 		ubifs_dbg.chk_fs = val;
2980e7717060SArtem Bityutskiy 	else if (dent == dfs_tst_rcvry)
2981e7717060SArtem Bityutskiy 		ubifs_dbg.tst_rcvry = val;
2982e7717060SArtem Bityutskiy 	else
2983e7717060SArtem Bityutskiy 		return -EINVAL;
2984e7717060SArtem Bityutskiy 
2985e7717060SArtem Bityutskiy 	return count;
2986e7717060SArtem Bityutskiy }
2987e7717060SArtem Bityutskiy 
2988e7717060SArtem Bityutskiy static const struct file_operations dfs_global_fops = {
2989e7717060SArtem Bityutskiy 	.read = dfs_global_file_read,
2990e7717060SArtem Bityutskiy 	.write = dfs_global_file_write,
2991e7717060SArtem Bityutskiy 	.owner = THIS_MODULE,
2992e7717060SArtem Bityutskiy 	.llseek = no_llseek,
2993e7717060SArtem Bityutskiy };
2994e7717060SArtem Bityutskiy 
29957dae997dSArtem Bityutskiy /**
29967dae997dSArtem Bityutskiy  * dbg_debugfs_init - initialize debugfs file-system.
29977dae997dSArtem Bityutskiy  *
29987dae997dSArtem Bityutskiy  * UBIFS uses debugfs file-system to expose various debugging knobs to
29997dae997dSArtem Bityutskiy  * user-space. This function creates "ubifs" directory in the debugfs
30007dae997dSArtem Bityutskiy  * file-system. Returns zero in case of success and a negative error code in
30017dae997dSArtem Bityutskiy  * case of failure.
30027dae997dSArtem Bityutskiy  */
30037dae997dSArtem Bityutskiy int dbg_debugfs_init(void)
30047dae997dSArtem Bityutskiy {
3005e7717060SArtem Bityutskiy 	int err;
3006e7717060SArtem Bityutskiy 	const char *fname;
3007e7717060SArtem Bityutskiy 	struct dentry *dent;
3008e7717060SArtem Bityutskiy 
30092d4cf5aeSBrian Norris 	if (!IS_ENABLED(CONFIG_DEBUG_FS))
3010818039c7SArtem Bityutskiy 		return 0;
3011818039c7SArtem Bityutskiy 
3012e7717060SArtem Bityutskiy 	fname = "ubifs";
3013e7717060SArtem Bityutskiy 	dent = debugfs_create_dir(fname, NULL);
3014e7717060SArtem Bityutskiy 	if (IS_ERR_OR_NULL(dent))
3015e7717060SArtem Bityutskiy 		goto out;
3016e7717060SArtem Bityutskiy 	dfs_rootdir = dent;
3017e7717060SArtem Bityutskiy 
3018e7717060SArtem Bityutskiy 	fname = "chk_general";
3019e7717060SArtem Bityutskiy 	dent = debugfs_create_file(fname, S_IRUSR | S_IWUSR, dfs_rootdir, NULL,
3020e7717060SArtem Bityutskiy 				   &dfs_global_fops);
3021e7717060SArtem Bityutskiy 	if (IS_ERR_OR_NULL(dent))
3022e7717060SArtem Bityutskiy 		goto out_remove;
3023e7717060SArtem Bityutskiy 	dfs_chk_gen = dent;
3024e7717060SArtem Bityutskiy 
3025e7717060SArtem Bityutskiy 	fname = "chk_index";
3026e7717060SArtem Bityutskiy 	dent = debugfs_create_file(fname, S_IRUSR | S_IWUSR, dfs_rootdir, NULL,
3027e7717060SArtem Bityutskiy 				   &dfs_global_fops);
3028e7717060SArtem Bityutskiy 	if (IS_ERR_OR_NULL(dent))
3029e7717060SArtem Bityutskiy 		goto out_remove;
3030e7717060SArtem Bityutskiy 	dfs_chk_index = dent;
3031e7717060SArtem Bityutskiy 
3032e7717060SArtem Bityutskiy 	fname = "chk_orphans";
3033e7717060SArtem Bityutskiy 	dent = debugfs_create_file(fname, S_IRUSR | S_IWUSR, dfs_rootdir, NULL,
3034e7717060SArtem Bityutskiy 				   &dfs_global_fops);
3035e7717060SArtem Bityutskiy 	if (IS_ERR_OR_NULL(dent))
3036e7717060SArtem Bityutskiy 		goto out_remove;
3037e7717060SArtem Bityutskiy 	dfs_chk_orph = dent;
3038e7717060SArtem Bityutskiy 
3039e7717060SArtem Bityutskiy 	fname = "chk_lprops";
3040e7717060SArtem Bityutskiy 	dent = debugfs_create_file(fname, S_IRUSR | S_IWUSR, dfs_rootdir, NULL,
3041e7717060SArtem Bityutskiy 				   &dfs_global_fops);
3042e7717060SArtem Bityutskiy 	if (IS_ERR_OR_NULL(dent))
3043e7717060SArtem Bityutskiy 		goto out_remove;
3044e7717060SArtem Bityutskiy 	dfs_chk_lprops = dent;
3045e7717060SArtem Bityutskiy 
3046e7717060SArtem Bityutskiy 	fname = "chk_fs";
3047e7717060SArtem Bityutskiy 	dent = debugfs_create_file(fname, S_IRUSR | S_IWUSR, dfs_rootdir, NULL,
3048e7717060SArtem Bityutskiy 				   &dfs_global_fops);
3049e7717060SArtem Bityutskiy 	if (IS_ERR_OR_NULL(dent))
3050e7717060SArtem Bityutskiy 		goto out_remove;
3051e7717060SArtem Bityutskiy 	dfs_chk_fs = dent;
3052e7717060SArtem Bityutskiy 
3053e7717060SArtem Bityutskiy 	fname = "tst_recovery";
3054e7717060SArtem Bityutskiy 	dent = debugfs_create_file(fname, S_IRUSR | S_IWUSR, dfs_rootdir, NULL,
3055e7717060SArtem Bityutskiy 				   &dfs_global_fops);
3056e7717060SArtem Bityutskiy 	if (IS_ERR_OR_NULL(dent))
3057e7717060SArtem Bityutskiy 		goto out_remove;
3058e7717060SArtem Bityutskiy 	dfs_tst_rcvry = dent;
30597dae997dSArtem Bityutskiy 
30607dae997dSArtem Bityutskiy 	return 0;
3061e7717060SArtem Bityutskiy 
3062e7717060SArtem Bityutskiy out_remove:
3063e7717060SArtem Bityutskiy 	debugfs_remove_recursive(dfs_rootdir);
3064e7717060SArtem Bityutskiy out:
3065e7717060SArtem Bityutskiy 	err = dent ? PTR_ERR(dent) : -ENODEV;
3066235c362bSSheng Yong 	pr_err("UBIFS error (pid %d): cannot create \"%s\" debugfs file or directory, error %d\n",
3067235c362bSSheng Yong 	       current->pid, fname, err);
3068e7717060SArtem Bityutskiy 	return err;
30697dae997dSArtem Bityutskiy }
30707dae997dSArtem Bityutskiy 
30717dae997dSArtem Bityutskiy /**
30727dae997dSArtem Bityutskiy  * dbg_debugfs_exit - remove the "ubifs" directory from debugfs file-system.
30737dae997dSArtem Bityutskiy  */
30747dae997dSArtem Bityutskiy void dbg_debugfs_exit(void)
30757dae997dSArtem Bityutskiy {
30762d4cf5aeSBrian Norris 	if (IS_ENABLED(CONFIG_DEBUG_FS))
3077e7717060SArtem Bityutskiy 		debugfs_remove_recursive(dfs_rootdir);
30787dae997dSArtem Bityutskiy }
30797dae997dSArtem Bityutskiy 
30807dae997dSArtem Bityutskiy /**
30817dae997dSArtem Bityutskiy  * ubifs_debugging_init - initialize UBIFS debugging.
30827dae997dSArtem Bityutskiy  * @c: UBIFS file-system description object
30837dae997dSArtem Bityutskiy  *
30847dae997dSArtem Bityutskiy  * This function initializes debugging-related data for the file system.
30857dae997dSArtem Bityutskiy  * Returns zero in case of success and a negative error code in case of
30867dae997dSArtem Bityutskiy  * failure.
30877dae997dSArtem Bityutskiy  */
30887dae997dSArtem Bityutskiy int ubifs_debugging_init(struct ubifs_info *c)
30897dae997dSArtem Bityutskiy {
30907dae997dSArtem Bityutskiy 	c->dbg = kzalloc(sizeof(struct ubifs_debug_info), GFP_KERNEL);
30917dae997dSArtem Bityutskiy 	if (!c->dbg)
30927dae997dSArtem Bityutskiy 		return -ENOMEM;
30937dae997dSArtem Bityutskiy 
30947dae997dSArtem Bityutskiy 	return 0;
30957dae997dSArtem Bityutskiy }
30967dae997dSArtem Bityutskiy 
30977dae997dSArtem Bityutskiy /**
30987dae997dSArtem Bityutskiy  * ubifs_debugging_exit - free debugging data.
30997dae997dSArtem Bityutskiy  * @c: UBIFS file-system description object
31007dae997dSArtem Bityutskiy  */
31017dae997dSArtem Bityutskiy void ubifs_debugging_exit(struct ubifs_info *c)
31027dae997dSArtem Bityutskiy {
31037dae997dSArtem Bityutskiy 	kfree(c->dbg);
31047dae997dSArtem Bityutskiy }
3105