12b27bdccSThomas Gleixner // SPDX-License-Identifier: GPL-2.0-only 21e51764aSArtem Bityutskiy /* 31e51764aSArtem Bityutskiy * This file is part of UBIFS. 41e51764aSArtem Bityutskiy * 51e51764aSArtem Bityutskiy * Copyright (C) 2006-2008 Nokia Corporation 61e51764aSArtem Bityutskiy * 71e51764aSArtem Bityutskiy * Authors: Artem Bityutskiy (Битюцкий Артём) 81e51764aSArtem Bityutskiy * Adrian Hunter 91e51764aSArtem Bityutskiy */ 101e51764aSArtem Bityutskiy 111e51764aSArtem Bityutskiy /* 121e51764aSArtem Bityutskiy * This file implements most of the debugging stuff which is compiled in only 131e51764aSArtem Bityutskiy * when it is enabled. But some debugging check functions are implemented in 141e51764aSArtem Bityutskiy * corresponding subsystem, just because they are closely related and utilize 151e51764aSArtem Bityutskiy * various local functions of those subsystems. 161e51764aSArtem Bityutskiy */ 171e51764aSArtem Bityutskiy 181e51764aSArtem Bityutskiy #include <linux/module.h> 19552ff317SArtem Bityutskiy #include <linux/debugfs.h> 204d61db4fSArtem Bityutskiy #include <linux/math64.h> 2181e79d38SArtem Bityutskiy #include <linux/uaccess.h> 22a7fa94a9SArtem Bityutskiy #include <linux/random.h> 23e328379aSHyunchul Lee #include <linux/ctype.h> 24a7fa94a9SArtem Bityutskiy #include "ubifs.h" 251e51764aSArtem Bityutskiy 26b06283c7SArtem Bityutskiy static DEFINE_SPINLOCK(dbg_lock); 271e51764aSArtem Bityutskiy 281e51764aSArtem Bityutskiy static const char *get_key_fmt(int fmt) 291e51764aSArtem Bityutskiy { 301e51764aSArtem Bityutskiy switch (fmt) { 311e51764aSArtem Bityutskiy case UBIFS_SIMPLE_KEY_FMT: 321e51764aSArtem Bityutskiy return "simple"; 331e51764aSArtem Bityutskiy default: 341e51764aSArtem Bityutskiy return "unknown/invalid format"; 351e51764aSArtem Bityutskiy } 361e51764aSArtem Bityutskiy } 371e51764aSArtem Bityutskiy 381e51764aSArtem Bityutskiy static const char *get_key_hash(int hash) 391e51764aSArtem Bityutskiy { 401e51764aSArtem Bityutskiy switch (hash) { 411e51764aSArtem Bityutskiy case UBIFS_KEY_HASH_R5: 421e51764aSArtem Bityutskiy return "R5"; 431e51764aSArtem Bityutskiy case UBIFS_KEY_HASH_TEST: 441e51764aSArtem Bityutskiy return "test"; 451e51764aSArtem Bityutskiy default: 461e51764aSArtem Bityutskiy return "unknown/invalid name hash"; 471e51764aSArtem Bityutskiy } 481e51764aSArtem Bityutskiy } 491e51764aSArtem Bityutskiy 501e51764aSArtem Bityutskiy static const char *get_key_type(int type) 511e51764aSArtem Bityutskiy { 521e51764aSArtem Bityutskiy switch (type) { 531e51764aSArtem Bityutskiy case UBIFS_INO_KEY: 541e51764aSArtem Bityutskiy return "inode"; 551e51764aSArtem Bityutskiy case UBIFS_DENT_KEY: 561e51764aSArtem Bityutskiy return "direntry"; 571e51764aSArtem Bityutskiy case UBIFS_XENT_KEY: 581e51764aSArtem Bityutskiy return "xentry"; 591e51764aSArtem Bityutskiy case UBIFS_DATA_KEY: 601e51764aSArtem Bityutskiy return "data"; 611e51764aSArtem Bityutskiy case UBIFS_TRUN_KEY: 621e51764aSArtem Bityutskiy return "truncate"; 631e51764aSArtem Bityutskiy default: 641e51764aSArtem Bityutskiy return "unknown/invalid key"; 651e51764aSArtem Bityutskiy } 661e51764aSArtem Bityutskiy } 671e51764aSArtem Bityutskiy 684315fb40SArtem Bityutskiy static const char *get_dent_type(int type) 694315fb40SArtem Bityutskiy { 704315fb40SArtem Bityutskiy switch (type) { 714315fb40SArtem Bityutskiy case UBIFS_ITYPE_REG: 724315fb40SArtem Bityutskiy return "file"; 734315fb40SArtem Bityutskiy case UBIFS_ITYPE_DIR: 744315fb40SArtem Bityutskiy return "dir"; 754315fb40SArtem Bityutskiy case UBIFS_ITYPE_LNK: 764315fb40SArtem Bityutskiy return "symlink"; 774315fb40SArtem Bityutskiy case UBIFS_ITYPE_BLK: 784315fb40SArtem Bityutskiy return "blkdev"; 794315fb40SArtem Bityutskiy case UBIFS_ITYPE_CHR: 804315fb40SArtem Bityutskiy return "char dev"; 814315fb40SArtem Bityutskiy case UBIFS_ITYPE_FIFO: 824315fb40SArtem Bityutskiy return "fifo"; 834315fb40SArtem Bityutskiy case UBIFS_ITYPE_SOCK: 844315fb40SArtem Bityutskiy return "socket"; 854315fb40SArtem Bityutskiy default: 864315fb40SArtem Bityutskiy return "unknown/invalid type"; 874315fb40SArtem Bityutskiy } 884315fb40SArtem Bityutskiy } 894315fb40SArtem Bityutskiy 90515315a1SArtem Bityutskiy const char *dbg_snprintf_key(const struct ubifs_info *c, 91515315a1SArtem Bityutskiy const union ubifs_key *key, char *buffer, int len) 921e51764aSArtem Bityutskiy { 931e51764aSArtem Bityutskiy char *p = buffer; 941e51764aSArtem Bityutskiy int type = key_type(c, key); 951e51764aSArtem Bityutskiy 961e51764aSArtem Bityutskiy if (c->key_fmt == UBIFS_SIMPLE_KEY_FMT) { 971e51764aSArtem Bityutskiy switch (type) { 981e51764aSArtem Bityutskiy case UBIFS_INO_KEY: 99beba0060SArtem Bityutskiy len -= snprintf(p, len, "(%lu, %s)", 100beba0060SArtem Bityutskiy (unsigned long)key_inum(c, key), 1011e51764aSArtem Bityutskiy get_key_type(type)); 1021e51764aSArtem Bityutskiy break; 1031e51764aSArtem Bityutskiy case UBIFS_DENT_KEY: 1041e51764aSArtem Bityutskiy case UBIFS_XENT_KEY: 105beba0060SArtem Bityutskiy len -= snprintf(p, len, "(%lu, %s, %#08x)", 106e84461adSArtem Bityutskiy (unsigned long)key_inum(c, key), 1071e51764aSArtem Bityutskiy get_key_type(type), key_hash(c, key)); 1081e51764aSArtem Bityutskiy break; 1091e51764aSArtem Bityutskiy case UBIFS_DATA_KEY: 110beba0060SArtem Bityutskiy len -= snprintf(p, len, "(%lu, %s, %u)", 111e84461adSArtem Bityutskiy (unsigned long)key_inum(c, key), 1121e51764aSArtem Bityutskiy get_key_type(type), key_block(c, key)); 1131e51764aSArtem Bityutskiy break; 1141e51764aSArtem Bityutskiy case UBIFS_TRUN_KEY: 115beba0060SArtem Bityutskiy len -= snprintf(p, len, "(%lu, %s)", 116e84461adSArtem Bityutskiy (unsigned long)key_inum(c, key), 117e84461adSArtem Bityutskiy get_key_type(type)); 1181e51764aSArtem Bityutskiy break; 1191e51764aSArtem Bityutskiy default: 120beba0060SArtem Bityutskiy len -= snprintf(p, len, "(bad key type: %#08x, %#08x)", 1211e51764aSArtem Bityutskiy key->u32[0], key->u32[1]); 1221e51764aSArtem Bityutskiy } 1231e51764aSArtem Bityutskiy } else 124beba0060SArtem Bityutskiy len -= snprintf(p, len, "bad key format %d", c->key_fmt); 1256eb61d58SRichard Weinberger ubifs_assert(c, len > 0); 126515315a1SArtem Bityutskiy return p; 1271e51764aSArtem Bityutskiy } 1281e51764aSArtem Bityutskiy 1291e51764aSArtem Bityutskiy const char *dbg_ntype(int type) 1301e51764aSArtem Bityutskiy { 1311e51764aSArtem Bityutskiy switch (type) { 1321e51764aSArtem Bityutskiy case UBIFS_PAD_NODE: 1331e51764aSArtem Bityutskiy return "padding node"; 1341e51764aSArtem Bityutskiy case UBIFS_SB_NODE: 1351e51764aSArtem Bityutskiy return "superblock node"; 1361e51764aSArtem Bityutskiy case UBIFS_MST_NODE: 1371e51764aSArtem Bityutskiy return "master node"; 1381e51764aSArtem Bityutskiy case UBIFS_REF_NODE: 1391e51764aSArtem Bityutskiy return "reference node"; 1401e51764aSArtem Bityutskiy case UBIFS_INO_NODE: 1411e51764aSArtem Bityutskiy return "inode node"; 1421e51764aSArtem Bityutskiy case UBIFS_DENT_NODE: 1431e51764aSArtem Bityutskiy return "direntry node"; 1441e51764aSArtem Bityutskiy case UBIFS_XENT_NODE: 1451e51764aSArtem Bityutskiy return "xentry node"; 1461e51764aSArtem Bityutskiy case UBIFS_DATA_NODE: 1471e51764aSArtem Bityutskiy return "data node"; 1481e51764aSArtem Bityutskiy case UBIFS_TRUN_NODE: 1491e51764aSArtem Bityutskiy return "truncate node"; 1501e51764aSArtem Bityutskiy case UBIFS_IDX_NODE: 1511e51764aSArtem Bityutskiy return "indexing node"; 1521e51764aSArtem Bityutskiy case UBIFS_CS_NODE: 1531e51764aSArtem Bityutskiy return "commit start node"; 1541e51764aSArtem Bityutskiy case UBIFS_ORPH_NODE: 1551e51764aSArtem Bityutskiy return "orphan node"; 1565125cfdfSSascha Hauer case UBIFS_AUTH_NODE: 1575125cfdfSSascha Hauer return "auth node"; 1581e51764aSArtem Bityutskiy default: 1591e51764aSArtem Bityutskiy return "unknown node"; 1601e51764aSArtem Bityutskiy } 1611e51764aSArtem Bityutskiy } 1621e51764aSArtem Bityutskiy 1631e51764aSArtem Bityutskiy static const char *dbg_gtype(int type) 1641e51764aSArtem Bityutskiy { 1651e51764aSArtem Bityutskiy switch (type) { 1661e51764aSArtem Bityutskiy case UBIFS_NO_NODE_GROUP: 1671e51764aSArtem Bityutskiy return "no node group"; 1681e51764aSArtem Bityutskiy case UBIFS_IN_NODE_GROUP: 1691e51764aSArtem Bityutskiy return "in node group"; 1701e51764aSArtem Bityutskiy case UBIFS_LAST_OF_NODE_GROUP: 1711e51764aSArtem Bityutskiy return "last of node group"; 1721e51764aSArtem Bityutskiy default: 1731e51764aSArtem Bityutskiy return "unknown"; 1741e51764aSArtem Bityutskiy } 1751e51764aSArtem Bityutskiy } 1761e51764aSArtem Bityutskiy 1771e51764aSArtem Bityutskiy const char *dbg_cstate(int cmt_state) 1781e51764aSArtem Bityutskiy { 1791e51764aSArtem Bityutskiy switch (cmt_state) { 1801e51764aSArtem Bityutskiy case COMMIT_RESTING: 1811e51764aSArtem Bityutskiy return "commit resting"; 1821e51764aSArtem Bityutskiy case COMMIT_BACKGROUND: 1831e51764aSArtem Bityutskiy return "background commit requested"; 1841e51764aSArtem Bityutskiy case COMMIT_REQUIRED: 1851e51764aSArtem Bityutskiy return "commit required"; 1861e51764aSArtem Bityutskiy case COMMIT_RUNNING_BACKGROUND: 1871e51764aSArtem Bityutskiy return "BACKGROUND commit running"; 1881e51764aSArtem Bityutskiy case COMMIT_RUNNING_REQUIRED: 1891e51764aSArtem Bityutskiy return "commit running and required"; 1901e51764aSArtem Bityutskiy case COMMIT_BROKEN: 1911e51764aSArtem Bityutskiy return "broken commit"; 1921e51764aSArtem Bityutskiy default: 1931e51764aSArtem Bityutskiy return "unknown commit state"; 1941e51764aSArtem Bityutskiy } 1951e51764aSArtem Bityutskiy } 1961e51764aSArtem Bityutskiy 19777a7ae58SArtem Bityutskiy const char *dbg_jhead(int jhead) 19877a7ae58SArtem Bityutskiy { 19977a7ae58SArtem Bityutskiy switch (jhead) { 20077a7ae58SArtem Bityutskiy case GCHD: 20177a7ae58SArtem Bityutskiy return "0 (GC)"; 20277a7ae58SArtem Bityutskiy case BASEHD: 20377a7ae58SArtem Bityutskiy return "1 (base)"; 20477a7ae58SArtem Bityutskiy case DATAHD: 20577a7ae58SArtem Bityutskiy return "2 (data)"; 20677a7ae58SArtem Bityutskiy default: 20777a7ae58SArtem Bityutskiy return "unknown journal head"; 20877a7ae58SArtem Bityutskiy } 20977a7ae58SArtem Bityutskiy } 21077a7ae58SArtem Bityutskiy 2111e51764aSArtem Bityutskiy static void dump_ch(const struct ubifs_ch *ch) 2121e51764aSArtem Bityutskiy { 2136b38d03fSArtem Bityutskiy pr_err("\tmagic %#x\n", le32_to_cpu(ch->magic)); 2146b38d03fSArtem Bityutskiy pr_err("\tcrc %#x\n", le32_to_cpu(ch->crc)); 2156b38d03fSArtem Bityutskiy pr_err("\tnode_type %d (%s)\n", ch->node_type, 2161e51764aSArtem Bityutskiy dbg_ntype(ch->node_type)); 2176b38d03fSArtem Bityutskiy pr_err("\tgroup_type %d (%s)\n", ch->group_type, 2181e51764aSArtem Bityutskiy dbg_gtype(ch->group_type)); 2196b38d03fSArtem Bityutskiy pr_err("\tsqnum %llu\n", 2201e51764aSArtem Bityutskiy (unsigned long long)le64_to_cpu(ch->sqnum)); 2216b38d03fSArtem Bityutskiy pr_err("\tlen %u\n", le32_to_cpu(ch->len)); 2221e51764aSArtem Bityutskiy } 2231e51764aSArtem Bityutskiy 224edf6be24SArtem Bityutskiy void ubifs_dump_inode(struct ubifs_info *c, const struct inode *inode) 2251e51764aSArtem Bityutskiy { 2261e51764aSArtem Bityutskiy const struct ubifs_inode *ui = ubifs_inode(inode); 227f4f61d2cSRichard Weinberger struct fscrypt_name nm = {0}; 2284315fb40SArtem Bityutskiy union ubifs_key key; 2294315fb40SArtem Bityutskiy struct ubifs_dent_node *dent, *pdent = NULL; 2304315fb40SArtem Bityutskiy int count = 2; 2311e51764aSArtem Bityutskiy 2326b38d03fSArtem Bityutskiy pr_err("Dump in-memory inode:"); 2336b38d03fSArtem Bityutskiy pr_err("\tinode %lu\n", inode->i_ino); 2346b38d03fSArtem Bityutskiy pr_err("\tsize %llu\n", 2351e51764aSArtem Bityutskiy (unsigned long long)i_size_read(inode)); 2366b38d03fSArtem Bityutskiy pr_err("\tnlink %u\n", inode->i_nlink); 237782c3fb2SLinus Torvalds pr_err("\tuid %u\n", (unsigned int)i_uid_read(inode)); 238782c3fb2SLinus Torvalds pr_err("\tgid %u\n", (unsigned int)i_gid_read(inode)); 2396b38d03fSArtem Bityutskiy pr_err("\tatime %u.%u\n", 2401e51764aSArtem Bityutskiy (unsigned int)inode->i_atime.tv_sec, 2411e51764aSArtem Bityutskiy (unsigned int)inode->i_atime.tv_nsec); 2426b38d03fSArtem Bityutskiy pr_err("\tmtime %u.%u\n", 2431e51764aSArtem Bityutskiy (unsigned int)inode->i_mtime.tv_sec, 2441e51764aSArtem Bityutskiy (unsigned int)inode->i_mtime.tv_nsec); 2456b38d03fSArtem Bityutskiy pr_err("\tctime %u.%u\n", 2461e51764aSArtem Bityutskiy (unsigned int)inode->i_ctime.tv_sec, 2471e51764aSArtem Bityutskiy (unsigned int)inode->i_ctime.tv_nsec); 2486b38d03fSArtem Bityutskiy pr_err("\tcreat_sqnum %llu\n", ui->creat_sqnum); 2496b38d03fSArtem Bityutskiy pr_err("\txattr_size %u\n", ui->xattr_size); 2506b38d03fSArtem Bityutskiy pr_err("\txattr_cnt %u\n", ui->xattr_cnt); 2516b38d03fSArtem Bityutskiy pr_err("\txattr_names %u\n", ui->xattr_names); 2526b38d03fSArtem Bityutskiy pr_err("\tdirty %u\n", ui->dirty); 2536b38d03fSArtem Bityutskiy pr_err("\txattr %u\n", ui->xattr); 2541112018cSAndreas Gruenbacher pr_err("\tbulk_read %u\n", ui->bulk_read); 2556b38d03fSArtem Bityutskiy pr_err("\tsynced_i_size %llu\n", 256b5e426e9SArtem Bityutskiy (unsigned long long)ui->synced_i_size); 2576b38d03fSArtem Bityutskiy pr_err("\tui_size %llu\n", 258b5e426e9SArtem Bityutskiy (unsigned long long)ui->ui_size); 2596b38d03fSArtem Bityutskiy pr_err("\tflags %d\n", ui->flags); 2606b38d03fSArtem Bityutskiy pr_err("\tcompr_type %d\n", ui->compr_type); 2616b38d03fSArtem Bityutskiy pr_err("\tlast_page_read %lu\n", ui->last_page_read); 2626b38d03fSArtem Bityutskiy pr_err("\tread_in_a_row %lu\n", ui->read_in_a_row); 2636b38d03fSArtem Bityutskiy pr_err("\tdata_len %d\n", ui->data_len); 2644315fb40SArtem Bityutskiy 2654315fb40SArtem Bityutskiy if (!S_ISDIR(inode->i_mode)) 2664315fb40SArtem Bityutskiy return; 2674315fb40SArtem Bityutskiy 2686b38d03fSArtem Bityutskiy pr_err("List of directory entries:\n"); 2696eb61d58SRichard Weinberger ubifs_assert(c, !mutex_is_locked(&c->tnc_mutex)); 2704315fb40SArtem Bityutskiy 2714315fb40SArtem Bityutskiy lowest_dent_key(c, &key, inode->i_ino); 2724315fb40SArtem Bityutskiy while (1) { 2734315fb40SArtem Bityutskiy dent = ubifs_tnc_next_ent(c, &key, &nm); 2744315fb40SArtem Bityutskiy if (IS_ERR(dent)) { 2754315fb40SArtem Bityutskiy if (PTR_ERR(dent) != -ENOENT) 2766b38d03fSArtem Bityutskiy pr_err("error %ld\n", PTR_ERR(dent)); 2774315fb40SArtem Bityutskiy break; 2784315fb40SArtem Bityutskiy } 2794315fb40SArtem Bityutskiy 28033fda9faSHyunchul Lee pr_err("\t%d: inode %llu, type %s, len %d\n", 28133fda9faSHyunchul Lee count++, (unsigned long long) le64_to_cpu(dent->inum), 28233fda9faSHyunchul Lee get_dent_type(dent->type), 28333fda9faSHyunchul Lee le16_to_cpu(dent->nlen)); 2844315fb40SArtem Bityutskiy 285f4f61d2cSRichard Weinberger fname_name(&nm) = dent->name; 286f4f61d2cSRichard Weinberger fname_len(&nm) = le16_to_cpu(dent->nlen); 2874315fb40SArtem Bityutskiy kfree(pdent); 2884315fb40SArtem Bityutskiy pdent = dent; 2894315fb40SArtem Bityutskiy key_read(c, &dent->key, &key); 2904315fb40SArtem Bityutskiy } 2914315fb40SArtem Bityutskiy kfree(pdent); 2921e51764aSArtem Bityutskiy } 2931e51764aSArtem Bityutskiy 294edf6be24SArtem Bityutskiy void ubifs_dump_node(const struct ubifs_info *c, const void *node) 2951e51764aSArtem Bityutskiy { 2961e51764aSArtem Bityutskiy int i, n; 2971e51764aSArtem Bityutskiy union ubifs_key key; 2981e51764aSArtem Bityutskiy const struct ubifs_ch *ch = node; 299515315a1SArtem Bityutskiy char key_buf[DBG_KEY_BUF_LEN]; 3001e51764aSArtem Bityutskiy 3011e51764aSArtem Bityutskiy /* If the magic is incorrect, just hexdump the first bytes */ 3021e51764aSArtem Bityutskiy if (le32_to_cpu(ch->magic) != UBIFS_NODE_MAGIC) { 3036b38d03fSArtem Bityutskiy pr_err("Not a node, first %zu bytes:", UBIFS_CH_SZ); 30416c395caSArtem Bityutskiy print_hex_dump(KERN_ERR, "", DUMP_PREFIX_OFFSET, 32, 1, 3051e51764aSArtem Bityutskiy (void *)node, UBIFS_CH_SZ, 1); 3061e51764aSArtem Bityutskiy return; 3071e51764aSArtem Bityutskiy } 3081e51764aSArtem Bityutskiy 3091e51764aSArtem Bityutskiy spin_lock(&dbg_lock); 3101e51764aSArtem Bityutskiy dump_ch(node); 3111e51764aSArtem Bityutskiy 3121e51764aSArtem Bityutskiy switch (ch->node_type) { 3131e51764aSArtem Bityutskiy case UBIFS_PAD_NODE: 3141e51764aSArtem Bityutskiy { 3151e51764aSArtem Bityutskiy const struct ubifs_pad_node *pad = node; 3161e51764aSArtem Bityutskiy 3176b38d03fSArtem Bityutskiy pr_err("\tpad_len %u\n", le32_to_cpu(pad->pad_len)); 3181e51764aSArtem Bityutskiy break; 3191e51764aSArtem Bityutskiy } 3201e51764aSArtem Bityutskiy case UBIFS_SB_NODE: 3211e51764aSArtem Bityutskiy { 3221e51764aSArtem Bityutskiy const struct ubifs_sb_node *sup = node; 3231e51764aSArtem Bityutskiy unsigned int sup_flags = le32_to_cpu(sup->flags); 3241e51764aSArtem Bityutskiy 3256b38d03fSArtem Bityutskiy pr_err("\tkey_hash %d (%s)\n", 3261e51764aSArtem Bityutskiy (int)sup->key_hash, get_key_hash(sup->key_hash)); 3276b38d03fSArtem Bityutskiy pr_err("\tkey_fmt %d (%s)\n", 3281e51764aSArtem Bityutskiy (int)sup->key_fmt, get_key_fmt(sup->key_fmt)); 3296b38d03fSArtem Bityutskiy pr_err("\tflags %#x\n", sup_flags); 3306b38d03fSArtem Bityutskiy pr_err("\tbig_lpt %u\n", 3311e51764aSArtem Bityutskiy !!(sup_flags & UBIFS_FLG_BIGLPT)); 3326b38d03fSArtem Bityutskiy pr_err("\tspace_fixup %u\n", 3339f58d350SMatthew L. Creech !!(sup_flags & UBIFS_FLG_SPACE_FIXUP)); 3346b38d03fSArtem Bityutskiy pr_err("\tmin_io_size %u\n", le32_to_cpu(sup->min_io_size)); 3356b38d03fSArtem Bityutskiy pr_err("\tleb_size %u\n", le32_to_cpu(sup->leb_size)); 3366b38d03fSArtem Bityutskiy pr_err("\tleb_cnt %u\n", le32_to_cpu(sup->leb_cnt)); 3376b38d03fSArtem Bityutskiy pr_err("\tmax_leb_cnt %u\n", le32_to_cpu(sup->max_leb_cnt)); 3386b38d03fSArtem Bityutskiy pr_err("\tmax_bud_bytes %llu\n", 3391e51764aSArtem Bityutskiy (unsigned long long)le64_to_cpu(sup->max_bud_bytes)); 3406b38d03fSArtem Bityutskiy pr_err("\tlog_lebs %u\n", le32_to_cpu(sup->log_lebs)); 3416b38d03fSArtem Bityutskiy pr_err("\tlpt_lebs %u\n", le32_to_cpu(sup->lpt_lebs)); 3426b38d03fSArtem Bityutskiy pr_err("\torph_lebs %u\n", le32_to_cpu(sup->orph_lebs)); 3436b38d03fSArtem Bityutskiy pr_err("\tjhead_cnt %u\n", le32_to_cpu(sup->jhead_cnt)); 3446b38d03fSArtem Bityutskiy pr_err("\tfanout %u\n", le32_to_cpu(sup->fanout)); 3456b38d03fSArtem Bityutskiy pr_err("\tlsave_cnt %u\n", le32_to_cpu(sup->lsave_cnt)); 3466b38d03fSArtem Bityutskiy pr_err("\tdefault_compr %u\n", 3471e51764aSArtem Bityutskiy (int)le16_to_cpu(sup->default_compr)); 3486b38d03fSArtem Bityutskiy pr_err("\trp_size %llu\n", 3491e51764aSArtem Bityutskiy (unsigned long long)le64_to_cpu(sup->rp_size)); 3506b38d03fSArtem Bityutskiy pr_err("\trp_uid %u\n", le32_to_cpu(sup->rp_uid)); 3516b38d03fSArtem Bityutskiy pr_err("\trp_gid %u\n", le32_to_cpu(sup->rp_gid)); 3526b38d03fSArtem Bityutskiy pr_err("\tfmt_version %u\n", le32_to_cpu(sup->fmt_version)); 3536b38d03fSArtem Bityutskiy pr_err("\ttime_gran %u\n", le32_to_cpu(sup->time_gran)); 3546b38d03fSArtem Bityutskiy pr_err("\tUUID %pUB\n", sup->uuid); 3551e51764aSArtem Bityutskiy break; 3561e51764aSArtem Bityutskiy } 3571e51764aSArtem Bityutskiy case UBIFS_MST_NODE: 3581e51764aSArtem Bityutskiy { 3591e51764aSArtem Bityutskiy const struct ubifs_mst_node *mst = node; 3601e51764aSArtem Bityutskiy 3616b38d03fSArtem Bityutskiy pr_err("\thighest_inum %llu\n", 3621e51764aSArtem Bityutskiy (unsigned long long)le64_to_cpu(mst->highest_inum)); 3636b38d03fSArtem Bityutskiy pr_err("\tcommit number %llu\n", 3641e51764aSArtem Bityutskiy (unsigned long long)le64_to_cpu(mst->cmt_no)); 3656b38d03fSArtem Bityutskiy pr_err("\tflags %#x\n", le32_to_cpu(mst->flags)); 3666b38d03fSArtem Bityutskiy pr_err("\tlog_lnum %u\n", le32_to_cpu(mst->log_lnum)); 3676b38d03fSArtem Bityutskiy pr_err("\troot_lnum %u\n", le32_to_cpu(mst->root_lnum)); 3686b38d03fSArtem Bityutskiy pr_err("\troot_offs %u\n", le32_to_cpu(mst->root_offs)); 3696b38d03fSArtem Bityutskiy pr_err("\troot_len %u\n", le32_to_cpu(mst->root_len)); 3706b38d03fSArtem Bityutskiy pr_err("\tgc_lnum %u\n", le32_to_cpu(mst->gc_lnum)); 3716b38d03fSArtem Bityutskiy pr_err("\tihead_lnum %u\n", le32_to_cpu(mst->ihead_lnum)); 3726b38d03fSArtem Bityutskiy pr_err("\tihead_offs %u\n", le32_to_cpu(mst->ihead_offs)); 3736b38d03fSArtem Bityutskiy pr_err("\tindex_size %llu\n", 3740ecb9529SHarvey Harrison (unsigned long long)le64_to_cpu(mst->index_size)); 3756b38d03fSArtem Bityutskiy pr_err("\tlpt_lnum %u\n", le32_to_cpu(mst->lpt_lnum)); 3766b38d03fSArtem Bityutskiy pr_err("\tlpt_offs %u\n", le32_to_cpu(mst->lpt_offs)); 3776b38d03fSArtem Bityutskiy pr_err("\tnhead_lnum %u\n", le32_to_cpu(mst->nhead_lnum)); 3786b38d03fSArtem Bityutskiy pr_err("\tnhead_offs %u\n", le32_to_cpu(mst->nhead_offs)); 3796b38d03fSArtem Bityutskiy pr_err("\tltab_lnum %u\n", le32_to_cpu(mst->ltab_lnum)); 3806b38d03fSArtem Bityutskiy pr_err("\tltab_offs %u\n", le32_to_cpu(mst->ltab_offs)); 3816b38d03fSArtem Bityutskiy pr_err("\tlsave_lnum %u\n", le32_to_cpu(mst->lsave_lnum)); 3826b38d03fSArtem Bityutskiy pr_err("\tlsave_offs %u\n", le32_to_cpu(mst->lsave_offs)); 3836b38d03fSArtem Bityutskiy pr_err("\tlscan_lnum %u\n", le32_to_cpu(mst->lscan_lnum)); 3846b38d03fSArtem Bityutskiy pr_err("\tleb_cnt %u\n", le32_to_cpu(mst->leb_cnt)); 3856b38d03fSArtem Bityutskiy pr_err("\tempty_lebs %u\n", le32_to_cpu(mst->empty_lebs)); 3866b38d03fSArtem Bityutskiy pr_err("\tidx_lebs %u\n", le32_to_cpu(mst->idx_lebs)); 3876b38d03fSArtem Bityutskiy pr_err("\ttotal_free %llu\n", 3881e51764aSArtem Bityutskiy (unsigned long long)le64_to_cpu(mst->total_free)); 3896b38d03fSArtem Bityutskiy pr_err("\ttotal_dirty %llu\n", 3901e51764aSArtem Bityutskiy (unsigned long long)le64_to_cpu(mst->total_dirty)); 3916b38d03fSArtem Bityutskiy pr_err("\ttotal_used %llu\n", 3921e51764aSArtem Bityutskiy (unsigned long long)le64_to_cpu(mst->total_used)); 3936b38d03fSArtem Bityutskiy pr_err("\ttotal_dead %llu\n", 3941e51764aSArtem Bityutskiy (unsigned long long)le64_to_cpu(mst->total_dead)); 3956b38d03fSArtem Bityutskiy pr_err("\ttotal_dark %llu\n", 3961e51764aSArtem Bityutskiy (unsigned long long)le64_to_cpu(mst->total_dark)); 3971e51764aSArtem Bityutskiy break; 3981e51764aSArtem Bityutskiy } 3991e51764aSArtem Bityutskiy case UBIFS_REF_NODE: 4001e51764aSArtem Bityutskiy { 4011e51764aSArtem Bityutskiy const struct ubifs_ref_node *ref = node; 4021e51764aSArtem Bityutskiy 4036b38d03fSArtem Bityutskiy pr_err("\tlnum %u\n", le32_to_cpu(ref->lnum)); 4046b38d03fSArtem Bityutskiy pr_err("\toffs %u\n", le32_to_cpu(ref->offs)); 4056b38d03fSArtem Bityutskiy pr_err("\tjhead %u\n", le32_to_cpu(ref->jhead)); 4061e51764aSArtem Bityutskiy break; 4071e51764aSArtem Bityutskiy } 4081e51764aSArtem Bityutskiy case UBIFS_INO_NODE: 4091e51764aSArtem Bityutskiy { 4101e51764aSArtem Bityutskiy const struct ubifs_ino_node *ino = node; 4111e51764aSArtem Bityutskiy 4121e51764aSArtem Bityutskiy key_read(c, &ino->key, &key); 4136b38d03fSArtem Bityutskiy pr_err("\tkey %s\n", 414515315a1SArtem Bityutskiy dbg_snprintf_key(c, &key, key_buf, DBG_KEY_BUF_LEN)); 4156b38d03fSArtem Bityutskiy pr_err("\tcreat_sqnum %llu\n", 4161e51764aSArtem Bityutskiy (unsigned long long)le64_to_cpu(ino->creat_sqnum)); 4176b38d03fSArtem Bityutskiy pr_err("\tsize %llu\n", 4181e51764aSArtem Bityutskiy (unsigned long long)le64_to_cpu(ino->size)); 4196b38d03fSArtem Bityutskiy pr_err("\tnlink %u\n", le32_to_cpu(ino->nlink)); 4206b38d03fSArtem Bityutskiy pr_err("\tatime %lld.%u\n", 4211e51764aSArtem Bityutskiy (long long)le64_to_cpu(ino->atime_sec), 4221e51764aSArtem Bityutskiy le32_to_cpu(ino->atime_nsec)); 4236b38d03fSArtem Bityutskiy pr_err("\tmtime %lld.%u\n", 4241e51764aSArtem Bityutskiy (long long)le64_to_cpu(ino->mtime_sec), 4251e51764aSArtem Bityutskiy le32_to_cpu(ino->mtime_nsec)); 4266b38d03fSArtem Bityutskiy pr_err("\tctime %lld.%u\n", 4271e51764aSArtem Bityutskiy (long long)le64_to_cpu(ino->ctime_sec), 4281e51764aSArtem Bityutskiy le32_to_cpu(ino->ctime_nsec)); 4296b38d03fSArtem Bityutskiy pr_err("\tuid %u\n", le32_to_cpu(ino->uid)); 4306b38d03fSArtem Bityutskiy pr_err("\tgid %u\n", le32_to_cpu(ino->gid)); 4316b38d03fSArtem Bityutskiy pr_err("\tmode %u\n", le32_to_cpu(ino->mode)); 4326b38d03fSArtem Bityutskiy pr_err("\tflags %#x\n", le32_to_cpu(ino->flags)); 4336b38d03fSArtem Bityutskiy pr_err("\txattr_cnt %u\n", le32_to_cpu(ino->xattr_cnt)); 4346b38d03fSArtem Bityutskiy pr_err("\txattr_size %u\n", le32_to_cpu(ino->xattr_size)); 4356b38d03fSArtem Bityutskiy pr_err("\txattr_names %u\n", le32_to_cpu(ino->xattr_names)); 4366b38d03fSArtem Bityutskiy pr_err("\tcompr_type %#x\n", 4371e51764aSArtem Bityutskiy (int)le16_to_cpu(ino->compr_type)); 4386b38d03fSArtem Bityutskiy pr_err("\tdata len %u\n", le32_to_cpu(ino->data_len)); 4391e51764aSArtem Bityutskiy break; 4401e51764aSArtem Bityutskiy } 4411e51764aSArtem Bityutskiy case UBIFS_DENT_NODE: 4421e51764aSArtem Bityutskiy case UBIFS_XENT_NODE: 4431e51764aSArtem Bityutskiy { 4441e51764aSArtem Bityutskiy const struct ubifs_dent_node *dent = node; 4451e51764aSArtem Bityutskiy int nlen = le16_to_cpu(dent->nlen); 4461e51764aSArtem Bityutskiy 4471e51764aSArtem Bityutskiy key_read(c, &dent->key, &key); 4486b38d03fSArtem Bityutskiy pr_err("\tkey %s\n", 449515315a1SArtem Bityutskiy dbg_snprintf_key(c, &key, key_buf, DBG_KEY_BUF_LEN)); 4506b38d03fSArtem Bityutskiy pr_err("\tinum %llu\n", 4511e51764aSArtem Bityutskiy (unsigned long long)le64_to_cpu(dent->inum)); 4526b38d03fSArtem Bityutskiy pr_err("\ttype %d\n", (int)dent->type); 4536b38d03fSArtem Bityutskiy pr_err("\tnlen %d\n", nlen); 4546b38d03fSArtem Bityutskiy pr_err("\tname "); 4551e51764aSArtem Bityutskiy 4561e51764aSArtem Bityutskiy if (nlen > UBIFS_MAX_NLEN) 4576b38d03fSArtem Bityutskiy pr_err("(bad name length, not printing, bad or corrupted node)"); 4581e51764aSArtem Bityutskiy else { 4591e51764aSArtem Bityutskiy for (i = 0; i < nlen && dent->name[i]; i++) 460e328379aSHyunchul Lee pr_cont("%c", isprint(dent->name[i]) ? 461e328379aSHyunchul Lee dent->name[i] : '?'); 4621e51764aSArtem Bityutskiy } 4636b38d03fSArtem Bityutskiy pr_cont("\n"); 4641e51764aSArtem Bityutskiy 4651e51764aSArtem Bityutskiy break; 4661e51764aSArtem Bityutskiy } 4671e51764aSArtem Bityutskiy case UBIFS_DATA_NODE: 4681e51764aSArtem Bityutskiy { 4691e51764aSArtem Bityutskiy const struct ubifs_data_node *dn = node; 4701e51764aSArtem Bityutskiy int dlen = le32_to_cpu(ch->len) - UBIFS_DATA_NODE_SZ; 4711e51764aSArtem Bityutskiy 4721e51764aSArtem Bityutskiy key_read(c, &dn->key, &key); 4736b38d03fSArtem Bityutskiy pr_err("\tkey %s\n", 474515315a1SArtem Bityutskiy dbg_snprintf_key(c, &key, key_buf, DBG_KEY_BUF_LEN)); 4756b38d03fSArtem Bityutskiy pr_err("\tsize %u\n", le32_to_cpu(dn->size)); 4766b38d03fSArtem Bityutskiy pr_err("\tcompr_typ %d\n", 4771e51764aSArtem Bityutskiy (int)le16_to_cpu(dn->compr_type)); 4786b38d03fSArtem Bityutskiy pr_err("\tdata size %d\n", dlen); 4796b38d03fSArtem Bityutskiy pr_err("\tdata:\n"); 48016c395caSArtem Bityutskiy print_hex_dump(KERN_ERR, "\t", DUMP_PREFIX_OFFSET, 32, 1, 4811e51764aSArtem Bityutskiy (void *)&dn->data, dlen, 0); 4821e51764aSArtem Bityutskiy break; 4831e51764aSArtem Bityutskiy } 4841e51764aSArtem Bityutskiy case UBIFS_TRUN_NODE: 4851e51764aSArtem Bityutskiy { 4861e51764aSArtem Bityutskiy const struct ubifs_trun_node *trun = node; 4871e51764aSArtem Bityutskiy 4886b38d03fSArtem Bityutskiy pr_err("\tinum %u\n", le32_to_cpu(trun->inum)); 4896b38d03fSArtem Bityutskiy pr_err("\told_size %llu\n", 4901e51764aSArtem Bityutskiy (unsigned long long)le64_to_cpu(trun->old_size)); 4916b38d03fSArtem Bityutskiy pr_err("\tnew_size %llu\n", 4921e51764aSArtem Bityutskiy (unsigned long long)le64_to_cpu(trun->new_size)); 4931e51764aSArtem Bityutskiy break; 4941e51764aSArtem Bityutskiy } 4951e51764aSArtem Bityutskiy case UBIFS_IDX_NODE: 4961e51764aSArtem Bityutskiy { 4971e51764aSArtem Bityutskiy const struct ubifs_idx_node *idx = node; 4981e51764aSArtem Bityutskiy 4991e51764aSArtem Bityutskiy n = le16_to_cpu(idx->child_cnt); 5006b38d03fSArtem Bityutskiy pr_err("\tchild_cnt %d\n", n); 5016b38d03fSArtem Bityutskiy pr_err("\tlevel %d\n", (int)le16_to_cpu(idx->level)); 5026b38d03fSArtem Bityutskiy pr_err("\tBranches:\n"); 5031e51764aSArtem Bityutskiy 5041e51764aSArtem Bityutskiy for (i = 0; i < n && i < c->fanout - 1; i++) { 5051e51764aSArtem Bityutskiy const struct ubifs_branch *br; 5061e51764aSArtem Bityutskiy 5071e51764aSArtem Bityutskiy br = ubifs_idx_branch(c, idx, i); 5081e51764aSArtem Bityutskiy key_read(c, &br->key, &key); 5096b38d03fSArtem Bityutskiy pr_err("\t%d: LEB %d:%d len %d key %s\n", 5101e51764aSArtem Bityutskiy i, le32_to_cpu(br->lnum), le32_to_cpu(br->offs), 511515315a1SArtem Bityutskiy le32_to_cpu(br->len), 512515315a1SArtem Bityutskiy dbg_snprintf_key(c, &key, key_buf, 513515315a1SArtem Bityutskiy DBG_KEY_BUF_LEN)); 5141e51764aSArtem Bityutskiy } 5151e51764aSArtem Bityutskiy break; 5161e51764aSArtem Bityutskiy } 5171e51764aSArtem Bityutskiy case UBIFS_CS_NODE: 5181e51764aSArtem Bityutskiy break; 5191e51764aSArtem Bityutskiy case UBIFS_ORPH_NODE: 5201e51764aSArtem Bityutskiy { 5211e51764aSArtem Bityutskiy const struct ubifs_orph_node *orph = node; 5221e51764aSArtem Bityutskiy 5236b38d03fSArtem Bityutskiy pr_err("\tcommit number %llu\n", 5241e51764aSArtem Bityutskiy (unsigned long long) 5251e51764aSArtem Bityutskiy le64_to_cpu(orph->cmt_no) & LLONG_MAX); 5266b38d03fSArtem Bityutskiy pr_err("\tlast node flag %llu\n", 5271e51764aSArtem Bityutskiy (unsigned long long)(le64_to_cpu(orph->cmt_no)) >> 63); 5281e51764aSArtem Bityutskiy n = (le32_to_cpu(ch->len) - UBIFS_ORPH_NODE_SZ) >> 3; 5296b38d03fSArtem Bityutskiy pr_err("\t%d orphan inode numbers:\n", n); 5301e51764aSArtem Bityutskiy for (i = 0; i < n; i++) 5316b38d03fSArtem Bityutskiy pr_err("\t ino %llu\n", 5327424bac8SAlexander Beregalov (unsigned long long)le64_to_cpu(orph->inos[i])); 5331e51764aSArtem Bityutskiy break; 5341e51764aSArtem Bityutskiy } 5355125cfdfSSascha Hauer case UBIFS_AUTH_NODE: 5365125cfdfSSascha Hauer { 5375125cfdfSSascha Hauer break; 5385125cfdfSSascha Hauer } 5391e51764aSArtem Bityutskiy default: 5406b38d03fSArtem Bityutskiy pr_err("node type %d was not recognized\n", 5411e51764aSArtem Bityutskiy (int)ch->node_type); 5421e51764aSArtem Bityutskiy } 5431e51764aSArtem Bityutskiy spin_unlock(&dbg_lock); 5441e51764aSArtem Bityutskiy } 5451e51764aSArtem Bityutskiy 546edf6be24SArtem Bityutskiy void ubifs_dump_budget_req(const struct ubifs_budget_req *req) 5471e51764aSArtem Bityutskiy { 5481e51764aSArtem Bityutskiy spin_lock(&dbg_lock); 5496b38d03fSArtem Bityutskiy pr_err("Budgeting request: new_ino %d, dirtied_ino %d\n", 5501e51764aSArtem Bityutskiy req->new_ino, req->dirtied_ino); 5516b38d03fSArtem Bityutskiy pr_err("\tnew_ino_d %d, dirtied_ino_d %d\n", 5521e51764aSArtem Bityutskiy req->new_ino_d, req->dirtied_ino_d); 5536b38d03fSArtem Bityutskiy pr_err("\tnew_page %d, dirtied_page %d\n", 5541e51764aSArtem Bityutskiy req->new_page, req->dirtied_page); 5556b38d03fSArtem Bityutskiy pr_err("\tnew_dent %d, mod_dent %d\n", 5561e51764aSArtem Bityutskiy req->new_dent, req->mod_dent); 5576b38d03fSArtem Bityutskiy pr_err("\tidx_growth %d\n", req->idx_growth); 5586b38d03fSArtem Bityutskiy pr_err("\tdata_growth %d dd_growth %d\n", 5591e51764aSArtem Bityutskiy req->data_growth, req->dd_growth); 5601e51764aSArtem Bityutskiy spin_unlock(&dbg_lock); 5611e51764aSArtem Bityutskiy } 5621e51764aSArtem Bityutskiy 563edf6be24SArtem Bityutskiy void ubifs_dump_lstats(const struct ubifs_lp_stats *lst) 5641e51764aSArtem Bityutskiy { 5651e51764aSArtem Bityutskiy spin_lock(&dbg_lock); 5666b38d03fSArtem Bityutskiy pr_err("(pid %d) Lprops statistics: empty_lebs %d, idx_lebs %d\n", 56779fda517SArtem Bityutskiy current->pid, lst->empty_lebs, lst->idx_lebs); 5686b38d03fSArtem Bityutskiy pr_err("\ttaken_empty_lebs %d, total_free %lld, total_dirty %lld\n", 56979fda517SArtem Bityutskiy lst->taken_empty_lebs, lst->total_free, lst->total_dirty); 5706b38d03fSArtem Bityutskiy pr_err("\ttotal_used %lld, total_dark %lld, total_dead %lld\n", 57179fda517SArtem Bityutskiy lst->total_used, lst->total_dark, lst->total_dead); 5721e51764aSArtem Bityutskiy spin_unlock(&dbg_lock); 5731e51764aSArtem Bityutskiy } 5741e51764aSArtem Bityutskiy 575edf6be24SArtem Bityutskiy void ubifs_dump_budg(struct ubifs_info *c, const struct ubifs_budg_info *bi) 5761e51764aSArtem Bityutskiy { 5771e51764aSArtem Bityutskiy int i; 5781e51764aSArtem Bityutskiy struct rb_node *rb; 5791e51764aSArtem Bityutskiy struct ubifs_bud *bud; 5801e51764aSArtem Bityutskiy struct ubifs_gced_idx_leb *idx_gc; 58121a60258SArtem Bityutskiy long long available, outstanding, free; 5821e51764aSArtem Bityutskiy 5838ff83089SArtem Bityutskiy spin_lock(&c->space_lock); 5841e51764aSArtem Bityutskiy spin_lock(&dbg_lock); 5856b38d03fSArtem Bityutskiy pr_err("(pid %d) Budgeting info: data budget sum %lld, total budget sum %lld\n", 58679fda517SArtem Bityutskiy current->pid, bi->data_growth + bi->dd_growth, 587f1bd66afSArtem Bityutskiy bi->data_growth + bi->dd_growth + bi->idx_growth); 5886b38d03fSArtem Bityutskiy pr_err("\tbudg_data_growth %lld, budg_dd_growth %lld, budg_idx_growth %lld\n", 58979fda517SArtem Bityutskiy bi->data_growth, bi->dd_growth, bi->idx_growth); 5906b38d03fSArtem Bityutskiy pr_err("\tmin_idx_lebs %d, old_idx_sz %llu, uncommitted_idx %lld\n", 59179fda517SArtem Bityutskiy bi->min_idx_lebs, bi->old_idx_sz, bi->uncommitted_idx); 5926b38d03fSArtem Bityutskiy pr_err("\tpage_budget %d, inode_budget %d, dent_budget %d\n", 593f1bd66afSArtem Bityutskiy bi->page_budget, bi->inode_budget, bi->dent_budget); 5946b38d03fSArtem Bityutskiy pr_err("\tnospace %u, nospace_rp %u\n", bi->nospace, bi->nospace_rp); 5956b38d03fSArtem Bityutskiy pr_err("\tdark_wm %d, dead_wm %d, max_idx_node_sz %d\n", 5968c3067e4SArtem Bityutskiy c->dark_wm, c->dead_wm, c->max_idx_node_sz); 597f1bd66afSArtem Bityutskiy 598f1bd66afSArtem Bityutskiy if (bi != &c->bi) 599f1bd66afSArtem Bityutskiy /* 600f1bd66afSArtem Bityutskiy * If we are dumping saved budgeting data, do not print 601f1bd66afSArtem Bityutskiy * additional information which is about the current state, not 602f1bd66afSArtem Bityutskiy * the old one which corresponded to the saved budgeting data. 603f1bd66afSArtem Bityutskiy */ 604f1bd66afSArtem Bityutskiy goto out_unlock; 605f1bd66afSArtem Bityutskiy 6066b38d03fSArtem Bityutskiy pr_err("\tfreeable_cnt %d, calc_idx_sz %lld, idx_gc_cnt %d\n", 6078c3067e4SArtem Bityutskiy c->freeable_cnt, c->calc_idx_sz, c->idx_gc_cnt); 6086b38d03fSArtem Bityutskiy pr_err("\tdirty_pg_cnt %ld, dirty_zn_cnt %ld, clean_zn_cnt %ld\n", 60979fda517SArtem Bityutskiy atomic_long_read(&c->dirty_pg_cnt), 6101e51764aSArtem Bityutskiy atomic_long_read(&c->dirty_zn_cnt), 6111e51764aSArtem Bityutskiy atomic_long_read(&c->clean_zn_cnt)); 6126b38d03fSArtem Bityutskiy pr_err("\tgc_lnum %d, ihead_lnum %d\n", c->gc_lnum, c->ihead_lnum); 613f1bd66afSArtem Bityutskiy 61484abf972SArtem Bityutskiy /* If we are in R/O mode, journal heads do not exist */ 61584abf972SArtem Bityutskiy if (c->jheads) 6161e51764aSArtem Bityutskiy for (i = 0; i < c->jhead_cnt; i++) 6176b38d03fSArtem Bityutskiy pr_err("\tjhead %s\t LEB %d\n", 61877a7ae58SArtem Bityutskiy dbg_jhead(c->jheads[i].wbuf.jhead), 61977a7ae58SArtem Bityutskiy c->jheads[i].wbuf.lnum); 6201e51764aSArtem Bityutskiy for (rb = rb_first(&c->buds); rb; rb = rb_next(rb)) { 6211e51764aSArtem Bityutskiy bud = rb_entry(rb, struct ubifs_bud, rb); 6226b38d03fSArtem Bityutskiy pr_err("\tbud LEB %d\n", bud->lnum); 6231e51764aSArtem Bityutskiy } 6241e51764aSArtem Bityutskiy list_for_each_entry(bud, &c->old_buds, list) 6256b38d03fSArtem Bityutskiy pr_err("\told bud LEB %d\n", bud->lnum); 6261e51764aSArtem Bityutskiy list_for_each_entry(idx_gc, &c->idx_gc, list) 6276b38d03fSArtem Bityutskiy pr_err("\tGC'ed idx LEB %d unmap %d\n", 6281e51764aSArtem Bityutskiy idx_gc->lnum, idx_gc->unmap); 6296b38d03fSArtem Bityutskiy pr_err("\tcommit state %d\n", c->cmt_state); 63021a60258SArtem Bityutskiy 63121a60258SArtem Bityutskiy /* Print budgeting predictions */ 632b137545cSArtem Bityutskiy available = ubifs_calc_available(c, c->bi.min_idx_lebs); 633b137545cSArtem Bityutskiy outstanding = c->bi.data_growth + c->bi.dd_growth; 63484abf972SArtem Bityutskiy free = ubifs_get_free_space_nolock(c); 6356b38d03fSArtem Bityutskiy pr_err("Budgeting predictions:\n"); 6366b38d03fSArtem Bityutskiy pr_err("\tavailable: %lld, outstanding %lld, free %lld\n", 63721a60258SArtem Bityutskiy available, outstanding, free); 638f1bd66afSArtem Bityutskiy out_unlock: 6391e51764aSArtem Bityutskiy spin_unlock(&dbg_lock); 6408ff83089SArtem Bityutskiy spin_unlock(&c->space_lock); 6411e51764aSArtem Bityutskiy } 6421e51764aSArtem Bityutskiy 643edf6be24SArtem Bityutskiy void ubifs_dump_lprop(const struct ubifs_info *c, const struct ubifs_lprops *lp) 6441e51764aSArtem Bityutskiy { 645be9e62a7SArtem Bityutskiy int i, spc, dark = 0, dead = 0; 646be9e62a7SArtem Bityutskiy struct rb_node *rb; 647be9e62a7SArtem Bityutskiy struct ubifs_bud *bud; 648be9e62a7SArtem Bityutskiy 649be9e62a7SArtem Bityutskiy spc = lp->free + lp->dirty; 650be9e62a7SArtem Bityutskiy if (spc < c->dead_wm) 651be9e62a7SArtem Bityutskiy dead = spc; 652be9e62a7SArtem Bityutskiy else 653be9e62a7SArtem Bityutskiy dark = ubifs_calc_dark(c, spc); 654be9e62a7SArtem Bityutskiy 655be9e62a7SArtem Bityutskiy if (lp->flags & LPROPS_INDEX) 6566b38d03fSArtem Bityutskiy pr_err("LEB %-7d free %-8d dirty %-8d used %-8d free + dirty %-8d flags %#x (", 65779fda517SArtem Bityutskiy lp->lnum, lp->free, lp->dirty, c->leb_size - spc, spc, 65879fda517SArtem Bityutskiy lp->flags); 659be9e62a7SArtem Bityutskiy else 6606b38d03fSArtem Bityutskiy pr_err("LEB %-7d free %-8d dirty %-8d used %-8d free + dirty %-8d dark %-4d dead %-4d nodes fit %-3d flags %#-4x (", 66179fda517SArtem Bityutskiy lp->lnum, lp->free, lp->dirty, c->leb_size - spc, spc, 66279fda517SArtem Bityutskiy dark, dead, (int)(spc / UBIFS_MAX_NODE_SZ), lp->flags); 663be9e62a7SArtem Bityutskiy 664be9e62a7SArtem Bityutskiy if (lp->flags & LPROPS_TAKEN) { 665be9e62a7SArtem Bityutskiy if (lp->flags & LPROPS_INDEX) 6666b38d03fSArtem Bityutskiy pr_cont("index, taken"); 667be9e62a7SArtem Bityutskiy else 6686b38d03fSArtem Bityutskiy pr_cont("taken"); 669be9e62a7SArtem Bityutskiy } else { 670be9e62a7SArtem Bityutskiy const char *s; 671be9e62a7SArtem Bityutskiy 672be9e62a7SArtem Bityutskiy if (lp->flags & LPROPS_INDEX) { 673be9e62a7SArtem Bityutskiy switch (lp->flags & LPROPS_CAT_MASK) { 674be9e62a7SArtem Bityutskiy case LPROPS_DIRTY_IDX: 675be9e62a7SArtem Bityutskiy s = "dirty index"; 676be9e62a7SArtem Bityutskiy break; 677be9e62a7SArtem Bityutskiy case LPROPS_FRDI_IDX: 678be9e62a7SArtem Bityutskiy s = "freeable index"; 679be9e62a7SArtem Bityutskiy break; 680be9e62a7SArtem Bityutskiy default: 681be9e62a7SArtem Bityutskiy s = "index"; 682be9e62a7SArtem Bityutskiy } 683be9e62a7SArtem Bityutskiy } else { 684be9e62a7SArtem Bityutskiy switch (lp->flags & LPROPS_CAT_MASK) { 685be9e62a7SArtem Bityutskiy case LPROPS_UNCAT: 686be9e62a7SArtem Bityutskiy s = "not categorized"; 687be9e62a7SArtem Bityutskiy break; 688be9e62a7SArtem Bityutskiy case LPROPS_DIRTY: 689be9e62a7SArtem Bityutskiy s = "dirty"; 690be9e62a7SArtem Bityutskiy break; 691be9e62a7SArtem Bityutskiy case LPROPS_FREE: 692be9e62a7SArtem Bityutskiy s = "free"; 693be9e62a7SArtem Bityutskiy break; 694be9e62a7SArtem Bityutskiy case LPROPS_EMPTY: 695be9e62a7SArtem Bityutskiy s = "empty"; 696be9e62a7SArtem Bityutskiy break; 697be9e62a7SArtem Bityutskiy case LPROPS_FREEABLE: 698be9e62a7SArtem Bityutskiy s = "freeable"; 699be9e62a7SArtem Bityutskiy break; 700be9e62a7SArtem Bityutskiy default: 701be9e62a7SArtem Bityutskiy s = NULL; 702be9e62a7SArtem Bityutskiy break; 703be9e62a7SArtem Bityutskiy } 704be9e62a7SArtem Bityutskiy } 7056b38d03fSArtem Bityutskiy pr_cont("%s", s); 706be9e62a7SArtem Bityutskiy } 707be9e62a7SArtem Bityutskiy 708be9e62a7SArtem Bityutskiy for (rb = rb_first((struct rb_root *)&c->buds); rb; rb = rb_next(rb)) { 709be9e62a7SArtem Bityutskiy bud = rb_entry(rb, struct ubifs_bud, rb); 710be9e62a7SArtem Bityutskiy if (bud->lnum == lp->lnum) { 711be9e62a7SArtem Bityutskiy int head = 0; 712be9e62a7SArtem Bityutskiy for (i = 0; i < c->jhead_cnt; i++) { 7131321657dSArtem Bityutskiy /* 7141321657dSArtem Bityutskiy * Note, if we are in R/O mode or in the middle 7151321657dSArtem Bityutskiy * of mounting/re-mounting, the write-buffers do 7161321657dSArtem Bityutskiy * not exist. 7171321657dSArtem Bityutskiy */ 7181321657dSArtem Bityutskiy if (c->jheads && 7191321657dSArtem Bityutskiy lp->lnum == c->jheads[i].wbuf.lnum) { 7206b38d03fSArtem Bityutskiy pr_cont(", jhead %s", dbg_jhead(i)); 721be9e62a7SArtem Bityutskiy head = 1; 722be9e62a7SArtem Bityutskiy } 723be9e62a7SArtem Bityutskiy } 724be9e62a7SArtem Bityutskiy if (!head) 7256b38d03fSArtem Bityutskiy pr_cont(", bud of jhead %s", 726be9e62a7SArtem Bityutskiy dbg_jhead(bud->jhead)); 727be9e62a7SArtem Bityutskiy } 728be9e62a7SArtem Bityutskiy } 729be9e62a7SArtem Bityutskiy if (lp->lnum == c->gc_lnum) 7306b38d03fSArtem Bityutskiy pr_cont(", GC LEB"); 7316b38d03fSArtem Bityutskiy pr_cont(")\n"); 7321e51764aSArtem Bityutskiy } 7331e51764aSArtem Bityutskiy 734edf6be24SArtem Bityutskiy void ubifs_dump_lprops(struct ubifs_info *c) 7351e51764aSArtem Bityutskiy { 7361e51764aSArtem Bityutskiy int lnum, err; 7371e51764aSArtem Bityutskiy struct ubifs_lprops lp; 7381e51764aSArtem Bityutskiy struct ubifs_lp_stats lst; 7391e51764aSArtem Bityutskiy 7406b38d03fSArtem Bityutskiy pr_err("(pid %d) start dumping LEB properties\n", current->pid); 7411e51764aSArtem Bityutskiy ubifs_get_lp_stats(c, &lst); 742edf6be24SArtem Bityutskiy ubifs_dump_lstats(&lst); 7431e51764aSArtem Bityutskiy 7441e51764aSArtem Bityutskiy for (lnum = c->main_first; lnum < c->leb_cnt; lnum++) { 7451e51764aSArtem Bityutskiy err = ubifs_read_one_lp(c, lnum, &lp); 746dac36981Shujianyang if (err) { 747235c362bSSheng Yong ubifs_err(c, "cannot read lprops for LEB %d", lnum); 748dac36981Shujianyang continue; 749dac36981Shujianyang } 7501e51764aSArtem Bityutskiy 751edf6be24SArtem Bityutskiy ubifs_dump_lprop(c, &lp); 7521e51764aSArtem Bityutskiy } 7536b38d03fSArtem Bityutskiy pr_err("(pid %d) finish dumping LEB properties\n", current->pid); 7541e51764aSArtem Bityutskiy } 7551e51764aSArtem Bityutskiy 756edf6be24SArtem Bityutskiy void ubifs_dump_lpt_info(struct ubifs_info *c) 75773944a6dSAdrian Hunter { 75873944a6dSAdrian Hunter int i; 75973944a6dSAdrian Hunter 76073944a6dSAdrian Hunter spin_lock(&dbg_lock); 7616b38d03fSArtem Bityutskiy pr_err("(pid %d) dumping LPT information\n", current->pid); 7626b38d03fSArtem Bityutskiy pr_err("\tlpt_sz: %lld\n", c->lpt_sz); 7636b38d03fSArtem Bityutskiy pr_err("\tpnode_sz: %d\n", c->pnode_sz); 7646b38d03fSArtem Bityutskiy pr_err("\tnnode_sz: %d\n", c->nnode_sz); 7656b38d03fSArtem Bityutskiy pr_err("\tltab_sz: %d\n", c->ltab_sz); 7666b38d03fSArtem Bityutskiy pr_err("\tlsave_sz: %d\n", c->lsave_sz); 7676b38d03fSArtem Bityutskiy pr_err("\tbig_lpt: %d\n", c->big_lpt); 7686b38d03fSArtem Bityutskiy pr_err("\tlpt_hght: %d\n", c->lpt_hght); 7696b38d03fSArtem Bityutskiy pr_err("\tpnode_cnt: %d\n", c->pnode_cnt); 7706b38d03fSArtem Bityutskiy pr_err("\tnnode_cnt: %d\n", c->nnode_cnt); 7716b38d03fSArtem Bityutskiy pr_err("\tdirty_pn_cnt: %d\n", c->dirty_pn_cnt); 7726b38d03fSArtem Bityutskiy pr_err("\tdirty_nn_cnt: %d\n", c->dirty_nn_cnt); 7736b38d03fSArtem Bityutskiy pr_err("\tlsave_cnt: %d\n", c->lsave_cnt); 7746b38d03fSArtem Bityutskiy pr_err("\tspace_bits: %d\n", c->space_bits); 7756b38d03fSArtem Bityutskiy pr_err("\tlpt_lnum_bits: %d\n", c->lpt_lnum_bits); 7766b38d03fSArtem Bityutskiy pr_err("\tlpt_offs_bits: %d\n", c->lpt_offs_bits); 7776b38d03fSArtem Bityutskiy pr_err("\tlpt_spc_bits: %d\n", c->lpt_spc_bits); 7786b38d03fSArtem Bityutskiy pr_err("\tpcnt_bits: %d\n", c->pcnt_bits); 7796b38d03fSArtem Bityutskiy pr_err("\tlnum_bits: %d\n", c->lnum_bits); 7806b38d03fSArtem Bityutskiy pr_err("\tLPT root is at %d:%d\n", c->lpt_lnum, c->lpt_offs); 7816b38d03fSArtem Bityutskiy pr_err("\tLPT head is at %d:%d\n", 78273944a6dSAdrian Hunter c->nhead_lnum, c->nhead_offs); 7836b38d03fSArtem Bityutskiy pr_err("\tLPT ltab is at %d:%d\n", c->ltab_lnum, c->ltab_offs); 78473944a6dSAdrian Hunter if (c->big_lpt) 7856b38d03fSArtem Bityutskiy pr_err("\tLPT lsave is at %d:%d\n", 78673944a6dSAdrian Hunter c->lsave_lnum, c->lsave_offs); 78773944a6dSAdrian Hunter for (i = 0; i < c->lpt_lebs; i++) 7886b38d03fSArtem Bityutskiy pr_err("\tLPT LEB %d free %d dirty %d tgc %d cmt %d\n", 78979fda517SArtem Bityutskiy i + c->lpt_first, c->ltab[i].free, c->ltab[i].dirty, 79079fda517SArtem Bityutskiy c->ltab[i].tgc, c->ltab[i].cmt); 79173944a6dSAdrian Hunter spin_unlock(&dbg_lock); 79273944a6dSAdrian Hunter } 79373944a6dSAdrian Hunter 794edf6be24SArtem Bityutskiy void ubifs_dump_sleb(const struct ubifs_info *c, 795d37854cfSArtem Bityutskiy const struct ubifs_scan_leb *sleb, int offs) 796d37854cfSArtem Bityutskiy { 797d37854cfSArtem Bityutskiy struct ubifs_scan_node *snod; 798d37854cfSArtem Bityutskiy 7996b38d03fSArtem Bityutskiy pr_err("(pid %d) start dumping scanned data from LEB %d:%d\n", 800d37854cfSArtem Bityutskiy current->pid, sleb->lnum, offs); 801d37854cfSArtem Bityutskiy 802d37854cfSArtem Bityutskiy list_for_each_entry(snod, &sleb->nodes, list) { 803d37854cfSArtem Bityutskiy cond_resched(); 8046b38d03fSArtem Bityutskiy pr_err("Dumping node at LEB %d:%d len %d\n", 80579fda517SArtem Bityutskiy sleb->lnum, snod->offs, snod->len); 806edf6be24SArtem Bityutskiy ubifs_dump_node(c, snod->node); 807d37854cfSArtem Bityutskiy } 808d37854cfSArtem Bityutskiy } 809d37854cfSArtem Bityutskiy 810edf6be24SArtem Bityutskiy void ubifs_dump_leb(const struct ubifs_info *c, int lnum) 8111e51764aSArtem Bityutskiy { 8121e51764aSArtem Bityutskiy struct ubifs_scan_leb *sleb; 8131e51764aSArtem Bityutskiy struct ubifs_scan_node *snod; 81473d9aec3SArtem Bityutskiy void *buf; 8151e51764aSArtem Bityutskiy 8166b38d03fSArtem Bityutskiy pr_err("(pid %d) start dumping LEB %d\n", current->pid, lnum); 81773d9aec3SArtem Bityutskiy 81888dca4caSChristoph Hellwig buf = __vmalloc(c->leb_size, GFP_NOFS); 81973d9aec3SArtem Bityutskiy if (!buf) { 820235c362bSSheng Yong ubifs_err(c, "cannot allocate memory for dumping LEB %d", lnum); 82173d9aec3SArtem Bityutskiy return; 82273d9aec3SArtem Bityutskiy } 82373d9aec3SArtem Bityutskiy 82473d9aec3SArtem Bityutskiy sleb = ubifs_scan(c, lnum, 0, buf, 0); 8251e51764aSArtem Bityutskiy if (IS_ERR(sleb)) { 826235c362bSSheng Yong ubifs_err(c, "scan error %d", (int)PTR_ERR(sleb)); 82773d9aec3SArtem Bityutskiy goto out; 8281e51764aSArtem Bityutskiy } 8291e51764aSArtem Bityutskiy 8306b38d03fSArtem Bityutskiy pr_err("LEB %d has %d nodes ending at %d\n", lnum, 8311e51764aSArtem Bityutskiy sleb->nodes_cnt, sleb->endpt); 8321e51764aSArtem Bityutskiy 8331e51764aSArtem Bityutskiy list_for_each_entry(snod, &sleb->nodes, list) { 8341e51764aSArtem Bityutskiy cond_resched(); 8356b38d03fSArtem Bityutskiy pr_err("Dumping node at LEB %d:%d len %d\n", lnum, 8361e51764aSArtem Bityutskiy snod->offs, snod->len); 837edf6be24SArtem Bityutskiy ubifs_dump_node(c, snod->node); 8381e51764aSArtem Bityutskiy } 8391e51764aSArtem Bityutskiy 8406b38d03fSArtem Bityutskiy pr_err("(pid %d) finish dumping LEB %d\n", current->pid, lnum); 8411e51764aSArtem Bityutskiy ubifs_scan_destroy(sleb); 84273d9aec3SArtem Bityutskiy 84373d9aec3SArtem Bityutskiy out: 84473d9aec3SArtem Bityutskiy vfree(buf); 8451e51764aSArtem Bityutskiy return; 8461e51764aSArtem Bityutskiy } 8471e51764aSArtem Bityutskiy 848edf6be24SArtem Bityutskiy void ubifs_dump_znode(const struct ubifs_info *c, 8491e51764aSArtem Bityutskiy const struct ubifs_znode *znode) 8501e51764aSArtem Bityutskiy { 8511e51764aSArtem Bityutskiy int n; 8521e51764aSArtem Bityutskiy const struct ubifs_zbranch *zbr; 853515315a1SArtem Bityutskiy char key_buf[DBG_KEY_BUF_LEN]; 8541e51764aSArtem Bityutskiy 8551e51764aSArtem Bityutskiy spin_lock(&dbg_lock); 8561e51764aSArtem Bityutskiy if (znode->parent) 8571e51764aSArtem Bityutskiy zbr = &znode->parent->zbranch[znode->iip]; 8581e51764aSArtem Bityutskiy else 8591e51764aSArtem Bityutskiy zbr = &c->zroot; 8601e51764aSArtem Bityutskiy 8616b38d03fSArtem Bityutskiy pr_err("znode %p, LEB %d:%d len %d parent %p iip %d level %d child_cnt %d flags %lx\n", 86279fda517SArtem Bityutskiy znode, zbr->lnum, zbr->offs, zbr->len, znode->parent, znode->iip, 86379fda517SArtem Bityutskiy znode->level, znode->child_cnt, znode->flags); 8641e51764aSArtem Bityutskiy 8651e51764aSArtem Bityutskiy if (znode->child_cnt <= 0 || znode->child_cnt > c->fanout) { 8661e51764aSArtem Bityutskiy spin_unlock(&dbg_lock); 8671e51764aSArtem Bityutskiy return; 8681e51764aSArtem Bityutskiy } 8691e51764aSArtem Bityutskiy 8706b38d03fSArtem Bityutskiy pr_err("zbranches:\n"); 8711e51764aSArtem Bityutskiy for (n = 0; n < znode->child_cnt; n++) { 8721e51764aSArtem Bityutskiy zbr = &znode->zbranch[n]; 8731e51764aSArtem Bityutskiy if (znode->level > 0) 8746b38d03fSArtem Bityutskiy pr_err("\t%d: znode %p LEB %d:%d len %d key %s\n", 87579fda517SArtem Bityutskiy n, zbr->znode, zbr->lnum, zbr->offs, zbr->len, 87679fda517SArtem Bityutskiy dbg_snprintf_key(c, &zbr->key, key_buf, 877515315a1SArtem Bityutskiy DBG_KEY_BUF_LEN)); 8781e51764aSArtem Bityutskiy else 8796b38d03fSArtem Bityutskiy pr_err("\t%d: LNC %p LEB %d:%d len %d key %s\n", 88079fda517SArtem Bityutskiy n, zbr->znode, zbr->lnum, zbr->offs, zbr->len, 88179fda517SArtem Bityutskiy dbg_snprintf_key(c, &zbr->key, key_buf, 882515315a1SArtem Bityutskiy DBG_KEY_BUF_LEN)); 8831e51764aSArtem Bityutskiy } 8841e51764aSArtem Bityutskiy spin_unlock(&dbg_lock); 8851e51764aSArtem Bityutskiy } 8861e51764aSArtem Bityutskiy 887edf6be24SArtem Bityutskiy void ubifs_dump_heap(struct ubifs_info *c, struct ubifs_lpt_heap *heap, int cat) 8881e51764aSArtem Bityutskiy { 8891e51764aSArtem Bityutskiy int i; 8901e51764aSArtem Bityutskiy 8916b38d03fSArtem Bityutskiy pr_err("(pid %d) start dumping heap cat %d (%d elements)\n", 8921de94159SArtem Bityutskiy current->pid, cat, heap->cnt); 8931e51764aSArtem Bityutskiy for (i = 0; i < heap->cnt; i++) { 8941e51764aSArtem Bityutskiy struct ubifs_lprops *lprops = heap->arr[i]; 8951e51764aSArtem Bityutskiy 8966b38d03fSArtem Bityutskiy pr_err("\t%d. LEB %d hpos %d free %d dirty %d flags %d\n", 89779fda517SArtem Bityutskiy i, lprops->lnum, lprops->hpos, lprops->free, 89879fda517SArtem Bityutskiy lprops->dirty, lprops->flags); 8991e51764aSArtem Bityutskiy } 9006b38d03fSArtem Bityutskiy pr_err("(pid %d) finish dumping heap\n", current->pid); 9011e51764aSArtem Bityutskiy } 9021e51764aSArtem Bityutskiy 903edf6be24SArtem Bityutskiy void ubifs_dump_pnode(struct ubifs_info *c, struct ubifs_pnode *pnode, 9041e51764aSArtem Bityutskiy struct ubifs_nnode *parent, int iip) 9051e51764aSArtem Bityutskiy { 9061e51764aSArtem Bityutskiy int i; 9071e51764aSArtem Bityutskiy 9086b38d03fSArtem Bityutskiy pr_err("(pid %d) dumping pnode:\n", current->pid); 9096b38d03fSArtem Bityutskiy pr_err("\taddress %zx parent %zx cnext %zx\n", 9101e51764aSArtem Bityutskiy (size_t)pnode, (size_t)parent, (size_t)pnode->cnext); 9116b38d03fSArtem Bityutskiy pr_err("\tflags %lu iip %d level %d num %d\n", 9121e51764aSArtem Bityutskiy pnode->flags, iip, pnode->level, pnode->num); 9131e51764aSArtem Bityutskiy for (i = 0; i < UBIFS_LPT_FANOUT; i++) { 9141e51764aSArtem Bityutskiy struct ubifs_lprops *lp = &pnode->lprops[i]; 9151e51764aSArtem Bityutskiy 9166b38d03fSArtem Bityutskiy pr_err("\t%d: free %d dirty %d flags %d lnum %d\n", 9171e51764aSArtem Bityutskiy i, lp->free, lp->dirty, lp->flags, lp->lnum); 9181e51764aSArtem Bityutskiy } 9191e51764aSArtem Bityutskiy } 9201e51764aSArtem Bityutskiy 921edf6be24SArtem Bityutskiy void ubifs_dump_tnc(struct ubifs_info *c) 9221e51764aSArtem Bityutskiy { 9231e51764aSArtem Bityutskiy struct ubifs_znode *znode; 9241e51764aSArtem Bityutskiy int level; 9251e51764aSArtem Bityutskiy 9266b38d03fSArtem Bityutskiy pr_err("\n"); 9276b38d03fSArtem Bityutskiy pr_err("(pid %d) start dumping TNC tree\n", current->pid); 9286eb61d58SRichard Weinberger znode = ubifs_tnc_levelorder_next(c, c->zroot.znode, NULL); 9291e51764aSArtem Bityutskiy level = znode->level; 9306b38d03fSArtem Bityutskiy pr_err("== Level %d ==\n", level); 9311e51764aSArtem Bityutskiy while (znode) { 9321e51764aSArtem Bityutskiy if (level != znode->level) { 9331e51764aSArtem Bityutskiy level = znode->level; 9346b38d03fSArtem Bityutskiy pr_err("== Level %d ==\n", level); 9351e51764aSArtem Bityutskiy } 936edf6be24SArtem Bityutskiy ubifs_dump_znode(c, znode); 9376eb61d58SRichard Weinberger znode = ubifs_tnc_levelorder_next(c, c->zroot.znode, znode); 9381e51764aSArtem Bityutskiy } 9396b38d03fSArtem Bityutskiy pr_err("(pid %d) finish dumping TNC tree\n", current->pid); 9401e51764aSArtem Bityutskiy } 9411e51764aSArtem Bityutskiy 9421e51764aSArtem Bityutskiy static int dump_znode(struct ubifs_info *c, struct ubifs_znode *znode, 9431e51764aSArtem Bityutskiy void *priv) 9441e51764aSArtem Bityutskiy { 945edf6be24SArtem Bityutskiy ubifs_dump_znode(c, znode); 9461e51764aSArtem Bityutskiy return 0; 9471e51764aSArtem Bityutskiy } 9481e51764aSArtem Bityutskiy 9491e51764aSArtem Bityutskiy /** 950edf6be24SArtem Bityutskiy * ubifs_dump_index - dump the on-flash index. 9511e51764aSArtem Bityutskiy * @c: UBIFS file-system description object 9521e51764aSArtem Bityutskiy * 953edf6be24SArtem Bityutskiy * This function dumps whole UBIFS indexing B-tree, unlike 'ubifs_dump_tnc()' 9541e51764aSArtem Bityutskiy * which dumps only in-memory znodes and does not read znodes which from flash. 9551e51764aSArtem Bityutskiy */ 956edf6be24SArtem Bityutskiy void ubifs_dump_index(struct ubifs_info *c) 9571e51764aSArtem Bityutskiy { 9581e51764aSArtem Bityutskiy dbg_walk_index(c, NULL, dump_znode, NULL); 9591e51764aSArtem Bityutskiy } 9601e51764aSArtem Bityutskiy 9611e51764aSArtem Bityutskiy /** 96284abf972SArtem Bityutskiy * dbg_save_space_info - save information about flash space. 96384abf972SArtem Bityutskiy * @c: UBIFS file-system description object 96484abf972SArtem Bityutskiy * 96584abf972SArtem Bityutskiy * This function saves information about UBIFS free space, dirty space, etc, in 96684abf972SArtem Bityutskiy * order to check it later. 96784abf972SArtem Bityutskiy */ 96884abf972SArtem Bityutskiy void dbg_save_space_info(struct ubifs_info *c) 96984abf972SArtem Bityutskiy { 97084abf972SArtem Bityutskiy struct ubifs_debug_info *d = c->dbg; 9717da6443aSArtem Bityutskiy int freeable_cnt; 97284abf972SArtem Bityutskiy 97384abf972SArtem Bityutskiy spin_lock(&c->space_lock); 9747da6443aSArtem Bityutskiy memcpy(&d->saved_lst, &c->lst, sizeof(struct ubifs_lp_stats)); 975f1bd66afSArtem Bityutskiy memcpy(&d->saved_bi, &c->bi, sizeof(struct ubifs_budg_info)); 976f1bd66afSArtem Bityutskiy d->saved_idx_gc_cnt = c->idx_gc_cnt; 9777da6443aSArtem Bityutskiy 9787da6443aSArtem Bityutskiy /* 9797da6443aSArtem Bityutskiy * We use a dirty hack here and zero out @c->freeable_cnt, because it 9807da6443aSArtem Bityutskiy * affects the free space calculations, and UBIFS might not know about 9817da6443aSArtem Bityutskiy * all freeable eraseblocks. Indeed, we know about freeable eraseblocks 9827da6443aSArtem Bityutskiy * only when we read their lprops, and we do this only lazily, upon the 9837da6443aSArtem Bityutskiy * need. So at any given point of time @c->freeable_cnt might be not 9847da6443aSArtem Bityutskiy * exactly accurate. 9857da6443aSArtem Bityutskiy * 9867da6443aSArtem Bityutskiy * Just one example about the issue we hit when we did not zero 9877da6443aSArtem Bityutskiy * @c->freeable_cnt. 9887da6443aSArtem Bityutskiy * 1. The file-system is mounted R/O, c->freeable_cnt is %0. We save the 9897da6443aSArtem Bityutskiy * amount of free space in @d->saved_free 9907da6443aSArtem Bityutskiy * 2. We re-mount R/W, which makes UBIFS to read the "lsave" 9917da6443aSArtem Bityutskiy * information from flash, where we cache LEBs from various 9927da6443aSArtem Bityutskiy * categories ('ubifs_remount_fs()' -> 'ubifs_lpt_init()' 9937da6443aSArtem Bityutskiy * -> 'lpt_init_wr()' -> 'read_lsave()' -> 'ubifs_lpt_lookup()' 9947da6443aSArtem Bityutskiy * -> 'ubifs_get_pnode()' -> 'update_cats()' 9957da6443aSArtem Bityutskiy * -> 'ubifs_add_to_cat()'). 9967da6443aSArtem Bityutskiy * 3. Lsave contains a freeable eraseblock, and @c->freeable_cnt 9977da6443aSArtem Bityutskiy * becomes %1. 9987da6443aSArtem Bityutskiy * 4. We calculate the amount of free space when the re-mount is 9997da6443aSArtem Bityutskiy * finished in 'dbg_check_space_info()' and it does not match 10007da6443aSArtem Bityutskiy * @d->saved_free. 10017da6443aSArtem Bityutskiy */ 10027da6443aSArtem Bityutskiy freeable_cnt = c->freeable_cnt; 10037da6443aSArtem Bityutskiy c->freeable_cnt = 0; 100484abf972SArtem Bityutskiy d->saved_free = ubifs_get_free_space_nolock(c); 10057da6443aSArtem Bityutskiy c->freeable_cnt = freeable_cnt; 100684abf972SArtem Bityutskiy spin_unlock(&c->space_lock); 100784abf972SArtem Bityutskiy } 100884abf972SArtem Bityutskiy 100984abf972SArtem Bityutskiy /** 101084abf972SArtem Bityutskiy * dbg_check_space_info - check flash space information. 101184abf972SArtem Bityutskiy * @c: UBIFS file-system description object 101284abf972SArtem Bityutskiy * 101384abf972SArtem Bityutskiy * This function compares current flash space information with the information 101484abf972SArtem Bityutskiy * which was saved when the 'dbg_save_space_info()' function was called. 1015*b8f1da98SRandy Dunlap * Returns zero if the information has not changed, and %-EINVAL if it has 101684abf972SArtem Bityutskiy * changed. 101784abf972SArtem Bityutskiy */ 101884abf972SArtem Bityutskiy int dbg_check_space_info(struct ubifs_info *c) 101984abf972SArtem Bityutskiy { 102084abf972SArtem Bityutskiy struct ubifs_debug_info *d = c->dbg; 102184abf972SArtem Bityutskiy struct ubifs_lp_stats lst; 10227da6443aSArtem Bityutskiy long long free; 10237da6443aSArtem Bityutskiy int freeable_cnt; 102484abf972SArtem Bityutskiy 102584abf972SArtem Bityutskiy spin_lock(&c->space_lock); 10267da6443aSArtem Bityutskiy freeable_cnt = c->freeable_cnt; 10277da6443aSArtem Bityutskiy c->freeable_cnt = 0; 10287da6443aSArtem Bityutskiy free = ubifs_get_free_space_nolock(c); 10297da6443aSArtem Bityutskiy c->freeable_cnt = freeable_cnt; 103084abf972SArtem Bityutskiy spin_unlock(&c->space_lock); 103184abf972SArtem Bityutskiy 103284abf972SArtem Bityutskiy if (free != d->saved_free) { 1033235c362bSSheng Yong ubifs_err(c, "free space changed from %lld to %lld", 103484abf972SArtem Bityutskiy d->saved_free, free); 103584abf972SArtem Bityutskiy goto out; 103684abf972SArtem Bityutskiy } 103784abf972SArtem Bityutskiy 103884abf972SArtem Bityutskiy return 0; 103984abf972SArtem Bityutskiy 104084abf972SArtem Bityutskiy out: 1041235c362bSSheng Yong ubifs_msg(c, "saved lprops statistics dump"); 1042edf6be24SArtem Bityutskiy ubifs_dump_lstats(&d->saved_lst); 1043235c362bSSheng Yong ubifs_msg(c, "saved budgeting info dump"); 1044edf6be24SArtem Bityutskiy ubifs_dump_budg(c, &d->saved_bi); 1045235c362bSSheng Yong ubifs_msg(c, "saved idx_gc_cnt %d", d->saved_idx_gc_cnt); 1046235c362bSSheng Yong ubifs_msg(c, "current lprops statistics dump"); 1047f1bd66afSArtem Bityutskiy ubifs_get_lp_stats(c, &lst); 1048edf6be24SArtem Bityutskiy ubifs_dump_lstats(&lst); 1049235c362bSSheng Yong ubifs_msg(c, "current budgeting info dump"); 1050edf6be24SArtem Bityutskiy ubifs_dump_budg(c, &c->bi); 105184abf972SArtem Bityutskiy dump_stack(); 105284abf972SArtem Bityutskiy return -EINVAL; 105384abf972SArtem Bityutskiy } 105484abf972SArtem Bityutskiy 105584abf972SArtem Bityutskiy /** 10561e51764aSArtem Bityutskiy * dbg_check_synced_i_size - check synchronized inode size. 1057d808efb4SArtem Bityutskiy * @c: UBIFS file-system description object 10581e51764aSArtem Bityutskiy * @inode: inode to check 10591e51764aSArtem Bityutskiy * 10601e51764aSArtem Bityutskiy * If inode is clean, synchronized inode size has to be equivalent to current 10611e51764aSArtem Bityutskiy * inode size. This function has to be called only for locked inodes (@i_mutex 10621e51764aSArtem Bityutskiy * has to be locked). Returns %0 if synchronized inode size if correct, and 10631e51764aSArtem Bityutskiy * %-EINVAL if not. 10641e51764aSArtem Bityutskiy */ 1065d808efb4SArtem Bityutskiy int dbg_check_synced_i_size(const struct ubifs_info *c, struct inode *inode) 10661e51764aSArtem Bityutskiy { 10671e51764aSArtem Bityutskiy int err = 0; 10681e51764aSArtem Bityutskiy struct ubifs_inode *ui = ubifs_inode(inode); 10691e51764aSArtem Bityutskiy 10702b1844a8SArtem Bityutskiy if (!dbg_is_chk_gen(c)) 10711e51764aSArtem Bityutskiy return 0; 10721e51764aSArtem Bityutskiy if (!S_ISREG(inode->i_mode)) 10731e51764aSArtem Bityutskiy return 0; 10741e51764aSArtem Bityutskiy 10751e51764aSArtem Bityutskiy mutex_lock(&ui->ui_mutex); 10761e51764aSArtem Bityutskiy spin_lock(&ui->ui_lock); 10771e51764aSArtem Bityutskiy if (ui->ui_size != ui->synced_i_size && !ui->dirty) { 1078235c362bSSheng Yong ubifs_err(c, "ui_size is %lld, synced_i_size is %lld, but inode is clean", 107979fda517SArtem Bityutskiy ui->ui_size, ui->synced_i_size); 1080235c362bSSheng Yong ubifs_err(c, "i_ino %lu, i_mode %#x, i_size %lld", inode->i_ino, 10811e51764aSArtem Bityutskiy inode->i_mode, i_size_read(inode)); 10827c46d0aeSArtem Bityutskiy dump_stack(); 10831e51764aSArtem Bityutskiy err = -EINVAL; 10841e51764aSArtem Bityutskiy } 10851e51764aSArtem Bityutskiy spin_unlock(&ui->ui_lock); 10861e51764aSArtem Bityutskiy mutex_unlock(&ui->ui_mutex); 10871e51764aSArtem Bityutskiy return err; 10881e51764aSArtem Bityutskiy } 10891e51764aSArtem Bityutskiy 10901e51764aSArtem Bityutskiy /* 10911e51764aSArtem Bityutskiy * dbg_check_dir - check directory inode size and link count. 10921e51764aSArtem Bityutskiy * @c: UBIFS file-system description object 10931e51764aSArtem Bityutskiy * @dir: the directory to calculate size for 10941e51764aSArtem Bityutskiy * @size: the result is returned here 10951e51764aSArtem Bityutskiy * 10961e51764aSArtem Bityutskiy * This function makes sure that directory size and link count are correct. 10971e51764aSArtem Bityutskiy * Returns zero in case of success and a negative error code in case of 10981e51764aSArtem Bityutskiy * failure. 10991e51764aSArtem Bityutskiy * 11001e51764aSArtem Bityutskiy * Note, it is good idea to make sure the @dir->i_mutex is locked before 11011e51764aSArtem Bityutskiy * calling this function. 11021e51764aSArtem Bityutskiy */ 11031b51e983SArtem Bityutskiy int dbg_check_dir(struct ubifs_info *c, const struct inode *dir) 11041e51764aSArtem Bityutskiy { 11051e51764aSArtem Bityutskiy unsigned int nlink = 2; 11061e51764aSArtem Bityutskiy union ubifs_key key; 11071e51764aSArtem Bityutskiy struct ubifs_dent_node *dent, *pdent = NULL; 1108f4f61d2cSRichard Weinberger struct fscrypt_name nm = {0}; 11091e51764aSArtem Bityutskiy loff_t size = UBIFS_INO_NODE_SZ; 11101e51764aSArtem Bityutskiy 11112b1844a8SArtem Bityutskiy if (!dbg_is_chk_gen(c)) 11121e51764aSArtem Bityutskiy return 0; 11131e51764aSArtem Bityutskiy 11141e51764aSArtem Bityutskiy if (!S_ISDIR(dir->i_mode)) 11151e51764aSArtem Bityutskiy return 0; 11161e51764aSArtem Bityutskiy 11171e51764aSArtem Bityutskiy lowest_dent_key(c, &key, dir->i_ino); 11181e51764aSArtem Bityutskiy while (1) { 11191e51764aSArtem Bityutskiy int err; 11201e51764aSArtem Bityutskiy 11211e51764aSArtem Bityutskiy dent = ubifs_tnc_next_ent(c, &key, &nm); 11221e51764aSArtem Bityutskiy if (IS_ERR(dent)) { 11231e51764aSArtem Bityutskiy err = PTR_ERR(dent); 11241e51764aSArtem Bityutskiy if (err == -ENOENT) 11251e51764aSArtem Bityutskiy break; 112658f6e78aSZhihao Cheng kfree(pdent); 11271e51764aSArtem Bityutskiy return err; 11281e51764aSArtem Bityutskiy } 11291e51764aSArtem Bityutskiy 1130f4f61d2cSRichard Weinberger fname_name(&nm) = dent->name; 1131f4f61d2cSRichard Weinberger fname_len(&nm) = le16_to_cpu(dent->nlen); 1132f4f61d2cSRichard Weinberger size += CALC_DENT_SIZE(fname_len(&nm)); 11331e51764aSArtem Bityutskiy if (dent->type == UBIFS_ITYPE_DIR) 11341e51764aSArtem Bityutskiy nlink += 1; 11351e51764aSArtem Bityutskiy kfree(pdent); 11361e51764aSArtem Bityutskiy pdent = dent; 11371e51764aSArtem Bityutskiy key_read(c, &dent->key, &key); 11381e51764aSArtem Bityutskiy } 11391e51764aSArtem Bityutskiy kfree(pdent); 11401e51764aSArtem Bityutskiy 11411e51764aSArtem Bityutskiy if (i_size_read(dir) != size) { 1142235c362bSSheng Yong ubifs_err(c, "directory inode %lu has size %llu, but calculated size is %llu", 114379fda517SArtem Bityutskiy dir->i_ino, (unsigned long long)i_size_read(dir), 11441e51764aSArtem Bityutskiy (unsigned long long)size); 1145edf6be24SArtem Bityutskiy ubifs_dump_inode(c, dir); 11461e51764aSArtem Bityutskiy dump_stack(); 11471e51764aSArtem Bityutskiy return -EINVAL; 11481e51764aSArtem Bityutskiy } 11491e51764aSArtem Bityutskiy if (dir->i_nlink != nlink) { 1150235c362bSSheng Yong ubifs_err(c, "directory inode %lu has nlink %u, but calculated nlink is %u", 115179fda517SArtem Bityutskiy dir->i_ino, dir->i_nlink, nlink); 1152edf6be24SArtem Bityutskiy ubifs_dump_inode(c, dir); 11531e51764aSArtem Bityutskiy dump_stack(); 11541e51764aSArtem Bityutskiy return -EINVAL; 11551e51764aSArtem Bityutskiy } 11561e51764aSArtem Bityutskiy 11571e51764aSArtem Bityutskiy return 0; 11581e51764aSArtem Bityutskiy } 11591e51764aSArtem Bityutskiy 11601e51764aSArtem Bityutskiy /** 11611e51764aSArtem Bityutskiy * dbg_check_key_order - make sure that colliding keys are properly ordered. 11621e51764aSArtem Bityutskiy * @c: UBIFS file-system description object 11631e51764aSArtem Bityutskiy * @zbr1: first zbranch 11641e51764aSArtem Bityutskiy * @zbr2: following zbranch 11651e51764aSArtem Bityutskiy * 11661e51764aSArtem Bityutskiy * In UBIFS indexing B-tree colliding keys has to be sorted in binary order of 11671e51764aSArtem Bityutskiy * names of the direntries/xentries which are referred by the keys. This 11681e51764aSArtem Bityutskiy * function reads direntries/xentries referred by @zbr1 and @zbr2 and makes 11691e51764aSArtem Bityutskiy * sure the name of direntry/xentry referred by @zbr1 is less than 11701e51764aSArtem Bityutskiy * direntry/xentry referred by @zbr2. Returns zero if this is true, %1 if not, 11711e51764aSArtem Bityutskiy * and a negative error code in case of failure. 11721e51764aSArtem Bityutskiy */ 11731e51764aSArtem Bityutskiy static int dbg_check_key_order(struct ubifs_info *c, struct ubifs_zbranch *zbr1, 11741e51764aSArtem Bityutskiy struct ubifs_zbranch *zbr2) 11751e51764aSArtem Bityutskiy { 11761e51764aSArtem Bityutskiy int err, nlen1, nlen2, cmp; 11771e51764aSArtem Bityutskiy struct ubifs_dent_node *dent1, *dent2; 11781e51764aSArtem Bityutskiy union ubifs_key key; 1179515315a1SArtem Bityutskiy char key_buf[DBG_KEY_BUF_LEN]; 11801e51764aSArtem Bityutskiy 11816eb61d58SRichard Weinberger ubifs_assert(c, !keys_cmp(c, &zbr1->key, &zbr2->key)); 11821e51764aSArtem Bityutskiy dent1 = kmalloc(UBIFS_MAX_DENT_NODE_SZ, GFP_NOFS); 11831e51764aSArtem Bityutskiy if (!dent1) 11841e51764aSArtem Bityutskiy return -ENOMEM; 11851e51764aSArtem Bityutskiy dent2 = kmalloc(UBIFS_MAX_DENT_NODE_SZ, GFP_NOFS); 11861e51764aSArtem Bityutskiy if (!dent2) { 11871e51764aSArtem Bityutskiy err = -ENOMEM; 11881e51764aSArtem Bityutskiy goto out_free; 11891e51764aSArtem Bityutskiy } 11901e51764aSArtem Bityutskiy 11911e51764aSArtem Bityutskiy err = ubifs_tnc_read_node(c, zbr1, dent1); 11921e51764aSArtem Bityutskiy if (err) 11931e51764aSArtem Bityutskiy goto out_free; 11941e51764aSArtem Bityutskiy err = ubifs_validate_entry(c, dent1); 11951e51764aSArtem Bityutskiy if (err) 11961e51764aSArtem Bityutskiy goto out_free; 11971e51764aSArtem Bityutskiy 11981e51764aSArtem Bityutskiy err = ubifs_tnc_read_node(c, zbr2, dent2); 11991e51764aSArtem Bityutskiy if (err) 12001e51764aSArtem Bityutskiy goto out_free; 12011e51764aSArtem Bityutskiy err = ubifs_validate_entry(c, dent2); 12021e51764aSArtem Bityutskiy if (err) 12031e51764aSArtem Bityutskiy goto out_free; 12041e51764aSArtem Bityutskiy 12051e51764aSArtem Bityutskiy /* Make sure node keys are the same as in zbranch */ 12061e51764aSArtem Bityutskiy err = 1; 12071e51764aSArtem Bityutskiy key_read(c, &dent1->key, &key); 12081e51764aSArtem Bityutskiy if (keys_cmp(c, &zbr1->key, &key)) { 1209235c362bSSheng Yong ubifs_err(c, "1st entry at %d:%d has key %s", zbr1->lnum, 1210515315a1SArtem Bityutskiy zbr1->offs, dbg_snprintf_key(c, &key, key_buf, 1211515315a1SArtem Bityutskiy DBG_KEY_BUF_LEN)); 1212235c362bSSheng Yong ubifs_err(c, "but it should have key %s according to tnc", 1213515315a1SArtem Bityutskiy dbg_snprintf_key(c, &zbr1->key, key_buf, 1214515315a1SArtem Bityutskiy DBG_KEY_BUF_LEN)); 1215edf6be24SArtem Bityutskiy ubifs_dump_node(c, dent1); 12161e51764aSArtem Bityutskiy goto out_free; 12171e51764aSArtem Bityutskiy } 12181e51764aSArtem Bityutskiy 12191e51764aSArtem Bityutskiy key_read(c, &dent2->key, &key); 12201e51764aSArtem Bityutskiy if (keys_cmp(c, &zbr2->key, &key)) { 1221235c362bSSheng Yong ubifs_err(c, "2nd entry at %d:%d has key %s", zbr1->lnum, 1222515315a1SArtem Bityutskiy zbr1->offs, dbg_snprintf_key(c, &key, key_buf, 1223515315a1SArtem Bityutskiy DBG_KEY_BUF_LEN)); 1224235c362bSSheng Yong ubifs_err(c, "but it should have key %s according to tnc", 1225515315a1SArtem Bityutskiy dbg_snprintf_key(c, &zbr2->key, key_buf, 1226515315a1SArtem Bityutskiy DBG_KEY_BUF_LEN)); 1227edf6be24SArtem Bityutskiy ubifs_dump_node(c, dent2); 12281e51764aSArtem Bityutskiy goto out_free; 12291e51764aSArtem Bityutskiy } 12301e51764aSArtem Bityutskiy 12311e51764aSArtem Bityutskiy nlen1 = le16_to_cpu(dent1->nlen); 12321e51764aSArtem Bityutskiy nlen2 = le16_to_cpu(dent2->nlen); 12331e51764aSArtem Bityutskiy 12341e51764aSArtem Bityutskiy cmp = memcmp(dent1->name, dent2->name, min_t(int, nlen1, nlen2)); 12351e51764aSArtem Bityutskiy if (cmp < 0 || (cmp == 0 && nlen1 < nlen2)) { 12361e51764aSArtem Bityutskiy err = 0; 12371e51764aSArtem Bityutskiy goto out_free; 12381e51764aSArtem Bityutskiy } 12391e51764aSArtem Bityutskiy if (cmp == 0 && nlen1 == nlen2) 1240235c362bSSheng Yong ubifs_err(c, "2 xent/dent nodes with the same name"); 12411e51764aSArtem Bityutskiy else 1242235c362bSSheng Yong ubifs_err(c, "bad order of colliding key %s", 1243515315a1SArtem Bityutskiy dbg_snprintf_key(c, &key, key_buf, DBG_KEY_BUF_LEN)); 12441e51764aSArtem Bityutskiy 1245235c362bSSheng Yong ubifs_msg(c, "first node at %d:%d\n", zbr1->lnum, zbr1->offs); 1246edf6be24SArtem Bityutskiy ubifs_dump_node(c, dent1); 1247235c362bSSheng Yong ubifs_msg(c, "second node at %d:%d\n", zbr2->lnum, zbr2->offs); 1248edf6be24SArtem Bityutskiy ubifs_dump_node(c, dent2); 12491e51764aSArtem Bityutskiy 12501e51764aSArtem Bityutskiy out_free: 12511e51764aSArtem Bityutskiy kfree(dent2); 12521e51764aSArtem Bityutskiy kfree(dent1); 12531e51764aSArtem Bityutskiy return err; 12541e51764aSArtem Bityutskiy } 12551e51764aSArtem Bityutskiy 12561e51764aSArtem Bityutskiy /** 12571e51764aSArtem Bityutskiy * dbg_check_znode - check if znode is all right. 12581e51764aSArtem Bityutskiy * @c: UBIFS file-system description object 12591e51764aSArtem Bityutskiy * @zbr: zbranch which points to this znode 12601e51764aSArtem Bityutskiy * 12611e51764aSArtem Bityutskiy * This function makes sure that znode referred to by @zbr is all right. 12621e51764aSArtem Bityutskiy * Returns zero if it is, and %-EINVAL if it is not. 12631e51764aSArtem Bityutskiy */ 12641e51764aSArtem Bityutskiy static int dbg_check_znode(struct ubifs_info *c, struct ubifs_zbranch *zbr) 12651e51764aSArtem Bityutskiy { 12661e51764aSArtem Bityutskiy struct ubifs_znode *znode = zbr->znode; 12671e51764aSArtem Bityutskiy struct ubifs_znode *zp = znode->parent; 12681e51764aSArtem Bityutskiy int n, err, cmp; 12691e51764aSArtem Bityutskiy 12701e51764aSArtem Bityutskiy if (znode->child_cnt <= 0 || znode->child_cnt > c->fanout) { 12711e51764aSArtem Bityutskiy err = 1; 12721e51764aSArtem Bityutskiy goto out; 12731e51764aSArtem Bityutskiy } 12741e51764aSArtem Bityutskiy if (znode->level < 0) { 12751e51764aSArtem Bityutskiy err = 2; 12761e51764aSArtem Bityutskiy goto out; 12771e51764aSArtem Bityutskiy } 12781e51764aSArtem Bityutskiy if (znode->iip < 0 || znode->iip >= c->fanout) { 12791e51764aSArtem Bityutskiy err = 3; 12801e51764aSArtem Bityutskiy goto out; 12811e51764aSArtem Bityutskiy } 12821e51764aSArtem Bityutskiy 12831e51764aSArtem Bityutskiy if (zbr->len == 0) 12841e51764aSArtem Bityutskiy /* Only dirty zbranch may have no on-flash nodes */ 12851e51764aSArtem Bityutskiy if (!ubifs_zn_dirty(znode)) { 12861e51764aSArtem Bityutskiy err = 4; 12871e51764aSArtem Bityutskiy goto out; 12881e51764aSArtem Bityutskiy } 12891e51764aSArtem Bityutskiy 12901e51764aSArtem Bityutskiy if (ubifs_zn_dirty(znode)) { 12911e51764aSArtem Bityutskiy /* 12921e51764aSArtem Bityutskiy * If znode is dirty, its parent has to be dirty as well. The 12931e51764aSArtem Bityutskiy * order of the operation is important, so we have to have 12941e51764aSArtem Bityutskiy * memory barriers. 12951e51764aSArtem Bityutskiy */ 12961e51764aSArtem Bityutskiy smp_mb(); 12971e51764aSArtem Bityutskiy if (zp && !ubifs_zn_dirty(zp)) { 12981e51764aSArtem Bityutskiy /* 12991e51764aSArtem Bityutskiy * The dirty flag is atomic and is cleared outside the 13001e51764aSArtem Bityutskiy * TNC mutex, so znode's dirty flag may now have 13011e51764aSArtem Bityutskiy * been cleared. The child is always cleared before the 13021e51764aSArtem Bityutskiy * parent, so we just need to check again. 13031e51764aSArtem Bityutskiy */ 13041e51764aSArtem Bityutskiy smp_mb(); 13051e51764aSArtem Bityutskiy if (ubifs_zn_dirty(znode)) { 13061e51764aSArtem Bityutskiy err = 5; 13071e51764aSArtem Bityutskiy goto out; 13081e51764aSArtem Bityutskiy } 13091e51764aSArtem Bityutskiy } 13101e51764aSArtem Bityutskiy } 13111e51764aSArtem Bityutskiy 13121e51764aSArtem Bityutskiy if (zp) { 13131e51764aSArtem Bityutskiy const union ubifs_key *min, *max; 13141e51764aSArtem Bityutskiy 13151e51764aSArtem Bityutskiy if (znode->level != zp->level - 1) { 13161e51764aSArtem Bityutskiy err = 6; 13171e51764aSArtem Bityutskiy goto out; 13181e51764aSArtem Bityutskiy } 13191e51764aSArtem Bityutskiy 13201e51764aSArtem Bityutskiy /* Make sure the 'parent' pointer in our znode is correct */ 13211e51764aSArtem Bityutskiy err = ubifs_search_zbranch(c, zp, &zbr->key, &n); 13221e51764aSArtem Bityutskiy if (!err) { 13231e51764aSArtem Bityutskiy /* This zbranch does not exist in the parent */ 13241e51764aSArtem Bityutskiy err = 7; 13251e51764aSArtem Bityutskiy goto out; 13261e51764aSArtem Bityutskiy } 13271e51764aSArtem Bityutskiy 13281e51764aSArtem Bityutskiy if (znode->iip >= zp->child_cnt) { 13291e51764aSArtem Bityutskiy err = 8; 13301e51764aSArtem Bityutskiy goto out; 13311e51764aSArtem Bityutskiy } 13321e51764aSArtem Bityutskiy 13331e51764aSArtem Bityutskiy if (znode->iip != n) { 13341e51764aSArtem Bityutskiy /* This may happen only in case of collisions */ 13351e51764aSArtem Bityutskiy if (keys_cmp(c, &zp->zbranch[n].key, 13361e51764aSArtem Bityutskiy &zp->zbranch[znode->iip].key)) { 13371e51764aSArtem Bityutskiy err = 9; 13381e51764aSArtem Bityutskiy goto out; 13391e51764aSArtem Bityutskiy } 13401e51764aSArtem Bityutskiy n = znode->iip; 13411e51764aSArtem Bityutskiy } 13421e51764aSArtem Bityutskiy 13431e51764aSArtem Bityutskiy /* 13441e51764aSArtem Bityutskiy * Make sure that the first key in our znode is greater than or 13451e51764aSArtem Bityutskiy * equal to the key in the pointing zbranch. 13461e51764aSArtem Bityutskiy */ 13471e51764aSArtem Bityutskiy min = &zbr->key; 13481e51764aSArtem Bityutskiy cmp = keys_cmp(c, min, &znode->zbranch[0].key); 13491e51764aSArtem Bityutskiy if (cmp == 1) { 13501e51764aSArtem Bityutskiy err = 10; 13511e51764aSArtem Bityutskiy goto out; 13521e51764aSArtem Bityutskiy } 13531e51764aSArtem Bityutskiy 13541e51764aSArtem Bityutskiy if (n + 1 < zp->child_cnt) { 13551e51764aSArtem Bityutskiy max = &zp->zbranch[n + 1].key; 13561e51764aSArtem Bityutskiy 13571e51764aSArtem Bityutskiy /* 13581e51764aSArtem Bityutskiy * Make sure the last key in our znode is less or 13597d4e9ccbSArtem Bityutskiy * equivalent than the key in the zbranch which goes 13601e51764aSArtem Bityutskiy * after our pointing zbranch. 13611e51764aSArtem Bityutskiy */ 13621e51764aSArtem Bityutskiy cmp = keys_cmp(c, max, 13631e51764aSArtem Bityutskiy &znode->zbranch[znode->child_cnt - 1].key); 13641e51764aSArtem Bityutskiy if (cmp == -1) { 13651e51764aSArtem Bityutskiy err = 11; 13661e51764aSArtem Bityutskiy goto out; 13671e51764aSArtem Bityutskiy } 13681e51764aSArtem Bityutskiy } 13691e51764aSArtem Bityutskiy } else { 13701e51764aSArtem Bityutskiy /* This may only be root znode */ 13711e51764aSArtem Bityutskiy if (zbr != &c->zroot) { 13721e51764aSArtem Bityutskiy err = 12; 13731e51764aSArtem Bityutskiy goto out; 13741e51764aSArtem Bityutskiy } 13751e51764aSArtem Bityutskiy } 13761e51764aSArtem Bityutskiy 13771e51764aSArtem Bityutskiy /* 13781e51764aSArtem Bityutskiy * Make sure that next key is greater or equivalent then the previous 13791e51764aSArtem Bityutskiy * one. 13801e51764aSArtem Bityutskiy */ 13811e51764aSArtem Bityutskiy for (n = 1; n < znode->child_cnt; n++) { 13821e51764aSArtem Bityutskiy cmp = keys_cmp(c, &znode->zbranch[n - 1].key, 13831e51764aSArtem Bityutskiy &znode->zbranch[n].key); 13841e51764aSArtem Bityutskiy if (cmp > 0) { 13851e51764aSArtem Bityutskiy err = 13; 13861e51764aSArtem Bityutskiy goto out; 13871e51764aSArtem Bityutskiy } 13881e51764aSArtem Bityutskiy if (cmp == 0) { 13891e51764aSArtem Bityutskiy /* This can only be keys with colliding hash */ 13901e51764aSArtem Bityutskiy if (!is_hash_key(c, &znode->zbranch[n].key)) { 13911e51764aSArtem Bityutskiy err = 14; 13921e51764aSArtem Bityutskiy goto out; 13931e51764aSArtem Bityutskiy } 13941e51764aSArtem Bityutskiy 13951e51764aSArtem Bityutskiy if (znode->level != 0 || c->replaying) 13961e51764aSArtem Bityutskiy continue; 13971e51764aSArtem Bityutskiy 13981e51764aSArtem Bityutskiy /* 13991e51764aSArtem Bityutskiy * Colliding keys should follow binary order of 14001e51764aSArtem Bityutskiy * corresponding xentry/dentry names. 14011e51764aSArtem Bityutskiy */ 14021e51764aSArtem Bityutskiy err = dbg_check_key_order(c, &znode->zbranch[n - 1], 14031e51764aSArtem Bityutskiy &znode->zbranch[n]); 14041e51764aSArtem Bityutskiy if (err < 0) 14051e51764aSArtem Bityutskiy return err; 14061e51764aSArtem Bityutskiy if (err) { 14071e51764aSArtem Bityutskiy err = 15; 14081e51764aSArtem Bityutskiy goto out; 14091e51764aSArtem Bityutskiy } 14101e51764aSArtem Bityutskiy } 14111e51764aSArtem Bityutskiy } 14121e51764aSArtem Bityutskiy 14131e51764aSArtem Bityutskiy for (n = 0; n < znode->child_cnt; n++) { 14141e51764aSArtem Bityutskiy if (!znode->zbranch[n].znode && 14151e51764aSArtem Bityutskiy (znode->zbranch[n].lnum == 0 || 14161e51764aSArtem Bityutskiy znode->zbranch[n].len == 0)) { 14171e51764aSArtem Bityutskiy err = 16; 14181e51764aSArtem Bityutskiy goto out; 14191e51764aSArtem Bityutskiy } 14201e51764aSArtem Bityutskiy 14211e51764aSArtem Bityutskiy if (znode->zbranch[n].lnum != 0 && 14221e51764aSArtem Bityutskiy znode->zbranch[n].len == 0) { 14231e51764aSArtem Bityutskiy err = 17; 14241e51764aSArtem Bityutskiy goto out; 14251e51764aSArtem Bityutskiy } 14261e51764aSArtem Bityutskiy 14271e51764aSArtem Bityutskiy if (znode->zbranch[n].lnum == 0 && 14281e51764aSArtem Bityutskiy znode->zbranch[n].len != 0) { 14291e51764aSArtem Bityutskiy err = 18; 14301e51764aSArtem Bityutskiy goto out; 14311e51764aSArtem Bityutskiy } 14321e51764aSArtem Bityutskiy 14331e51764aSArtem Bityutskiy if (znode->zbranch[n].lnum == 0 && 14341e51764aSArtem Bityutskiy znode->zbranch[n].offs != 0) { 14351e51764aSArtem Bityutskiy err = 19; 14361e51764aSArtem Bityutskiy goto out; 14371e51764aSArtem Bityutskiy } 14381e51764aSArtem Bityutskiy 14391e51764aSArtem Bityutskiy if (znode->level != 0 && znode->zbranch[n].znode) 14401e51764aSArtem Bityutskiy if (znode->zbranch[n].znode->parent != znode) { 14411e51764aSArtem Bityutskiy err = 20; 14421e51764aSArtem Bityutskiy goto out; 14431e51764aSArtem Bityutskiy } 14441e51764aSArtem Bityutskiy } 14451e51764aSArtem Bityutskiy 14461e51764aSArtem Bityutskiy return 0; 14471e51764aSArtem Bityutskiy 14481e51764aSArtem Bityutskiy out: 1449235c362bSSheng Yong ubifs_err(c, "failed, error %d", err); 1450235c362bSSheng Yong ubifs_msg(c, "dump of the znode"); 1451edf6be24SArtem Bityutskiy ubifs_dump_znode(c, znode); 14521e51764aSArtem Bityutskiy if (zp) { 1453235c362bSSheng Yong ubifs_msg(c, "dump of the parent znode"); 1454edf6be24SArtem Bityutskiy ubifs_dump_znode(c, zp); 14551e51764aSArtem Bityutskiy } 14561e51764aSArtem Bityutskiy dump_stack(); 14571e51764aSArtem Bityutskiy return -EINVAL; 14581e51764aSArtem Bityutskiy } 14591e51764aSArtem Bityutskiy 14601e51764aSArtem Bityutskiy /** 14611e51764aSArtem Bityutskiy * dbg_check_tnc - check TNC tree. 14621e51764aSArtem Bityutskiy * @c: UBIFS file-system description object 14631e51764aSArtem Bityutskiy * @extra: do extra checks that are possible at start commit 14641e51764aSArtem Bityutskiy * 14651e51764aSArtem Bityutskiy * This function traverses whole TNC tree and checks every znode. Returns zero 14661e51764aSArtem Bityutskiy * if everything is all right and %-EINVAL if something is wrong with TNC. 14671e51764aSArtem Bityutskiy */ 14681e51764aSArtem Bityutskiy int dbg_check_tnc(struct ubifs_info *c, int extra) 14691e51764aSArtem Bityutskiy { 14701e51764aSArtem Bityutskiy struct ubifs_znode *znode; 14711e51764aSArtem Bityutskiy long clean_cnt = 0, dirty_cnt = 0; 14721e51764aSArtem Bityutskiy int err, last; 14731e51764aSArtem Bityutskiy 14748d7819b4SArtem Bityutskiy if (!dbg_is_chk_index(c)) 14751e51764aSArtem Bityutskiy return 0; 14761e51764aSArtem Bityutskiy 14776eb61d58SRichard Weinberger ubifs_assert(c, mutex_is_locked(&c->tnc_mutex)); 14781e51764aSArtem Bityutskiy if (!c->zroot.znode) 14791e51764aSArtem Bityutskiy return 0; 14801e51764aSArtem Bityutskiy 14811e51764aSArtem Bityutskiy znode = ubifs_tnc_postorder_first(c->zroot.znode); 14821e51764aSArtem Bityutskiy while (1) { 14831e51764aSArtem Bityutskiy struct ubifs_znode *prev; 14841e51764aSArtem Bityutskiy struct ubifs_zbranch *zbr; 14851e51764aSArtem Bityutskiy 14861e51764aSArtem Bityutskiy if (!znode->parent) 14871e51764aSArtem Bityutskiy zbr = &c->zroot; 14881e51764aSArtem Bityutskiy else 14891e51764aSArtem Bityutskiy zbr = &znode->parent->zbranch[znode->iip]; 14901e51764aSArtem Bityutskiy 14911e51764aSArtem Bityutskiy err = dbg_check_znode(c, zbr); 14921e51764aSArtem Bityutskiy if (err) 14931e51764aSArtem Bityutskiy return err; 14941e51764aSArtem Bityutskiy 14951e51764aSArtem Bityutskiy if (extra) { 14961e51764aSArtem Bityutskiy if (ubifs_zn_dirty(znode)) 14971e51764aSArtem Bityutskiy dirty_cnt += 1; 14981e51764aSArtem Bityutskiy else 14991e51764aSArtem Bityutskiy clean_cnt += 1; 15001e51764aSArtem Bityutskiy } 15011e51764aSArtem Bityutskiy 15021e51764aSArtem Bityutskiy prev = znode; 15036eb61d58SRichard Weinberger znode = ubifs_tnc_postorder_next(c, znode); 15041e51764aSArtem Bityutskiy if (!znode) 15051e51764aSArtem Bityutskiy break; 15061e51764aSArtem Bityutskiy 15071e51764aSArtem Bityutskiy /* 15081e51764aSArtem Bityutskiy * If the last key of this znode is equivalent to the first key 15091e51764aSArtem Bityutskiy * of the next znode (collision), then check order of the keys. 15101e51764aSArtem Bityutskiy */ 15111e51764aSArtem Bityutskiy last = prev->child_cnt - 1; 15121e51764aSArtem Bityutskiy if (prev->level == 0 && znode->level == 0 && !c->replaying && 15131e51764aSArtem Bityutskiy !keys_cmp(c, &prev->zbranch[last].key, 15141e51764aSArtem Bityutskiy &znode->zbranch[0].key)) { 15151e51764aSArtem Bityutskiy err = dbg_check_key_order(c, &prev->zbranch[last], 15161e51764aSArtem Bityutskiy &znode->zbranch[0]); 15171e51764aSArtem Bityutskiy if (err < 0) 15181e51764aSArtem Bityutskiy return err; 15191e51764aSArtem Bityutskiy if (err) { 1520235c362bSSheng Yong ubifs_msg(c, "first znode"); 1521edf6be24SArtem Bityutskiy ubifs_dump_znode(c, prev); 1522235c362bSSheng Yong ubifs_msg(c, "second znode"); 1523edf6be24SArtem Bityutskiy ubifs_dump_znode(c, znode); 15241e51764aSArtem Bityutskiy return -EINVAL; 15251e51764aSArtem Bityutskiy } 15261e51764aSArtem Bityutskiy } 15271e51764aSArtem Bityutskiy } 15281e51764aSArtem Bityutskiy 15291e51764aSArtem Bityutskiy if (extra) { 15301e51764aSArtem Bityutskiy if (clean_cnt != atomic_long_read(&c->clean_zn_cnt)) { 1531235c362bSSheng Yong ubifs_err(c, "incorrect clean_zn_cnt %ld, calculated %ld", 15321e51764aSArtem Bityutskiy atomic_long_read(&c->clean_zn_cnt), 15331e51764aSArtem Bityutskiy clean_cnt); 15341e51764aSArtem Bityutskiy return -EINVAL; 15351e51764aSArtem Bityutskiy } 15361e51764aSArtem Bityutskiy if (dirty_cnt != atomic_long_read(&c->dirty_zn_cnt)) { 1537235c362bSSheng Yong ubifs_err(c, "incorrect dirty_zn_cnt %ld, calculated %ld", 15381e51764aSArtem Bityutskiy atomic_long_read(&c->dirty_zn_cnt), 15391e51764aSArtem Bityutskiy dirty_cnt); 15401e51764aSArtem Bityutskiy return -EINVAL; 15411e51764aSArtem Bityutskiy } 15421e51764aSArtem Bityutskiy } 15431e51764aSArtem Bityutskiy 15441e51764aSArtem Bityutskiy return 0; 15451e51764aSArtem Bityutskiy } 15461e51764aSArtem Bityutskiy 15471e51764aSArtem Bityutskiy /** 15481e51764aSArtem Bityutskiy * dbg_walk_index - walk the on-flash index. 15491e51764aSArtem Bityutskiy * @c: UBIFS file-system description object 15501e51764aSArtem Bityutskiy * @leaf_cb: called for each leaf node 15511e51764aSArtem Bityutskiy * @znode_cb: called for each indexing node 1552227c75c9SAdrian Hunter * @priv: private data which is passed to callbacks 15531e51764aSArtem Bityutskiy * 15541e51764aSArtem Bityutskiy * This function walks the UBIFS index and calls the @leaf_cb for each leaf 15551e51764aSArtem Bityutskiy * node and @znode_cb for each indexing node. Returns zero in case of success 15561e51764aSArtem Bityutskiy * and a negative error code in case of failure. 15571e51764aSArtem Bityutskiy * 15581e51764aSArtem Bityutskiy * It would be better if this function removed every znode it pulled to into 15591e51764aSArtem Bityutskiy * the TNC, so that the behavior more closely matched the non-debugging 15601e51764aSArtem Bityutskiy * behavior. 15611e51764aSArtem Bityutskiy */ 15621e51764aSArtem Bityutskiy int dbg_walk_index(struct ubifs_info *c, dbg_leaf_callback leaf_cb, 15631e51764aSArtem Bityutskiy dbg_znode_callback znode_cb, void *priv) 15641e51764aSArtem Bityutskiy { 15651e51764aSArtem Bityutskiy int err; 15661e51764aSArtem Bityutskiy struct ubifs_zbranch *zbr; 15671e51764aSArtem Bityutskiy struct ubifs_znode *znode, *child; 15681e51764aSArtem Bityutskiy 15691e51764aSArtem Bityutskiy mutex_lock(&c->tnc_mutex); 15701e51764aSArtem Bityutskiy /* If the root indexing node is not in TNC - pull it */ 15711e51764aSArtem Bityutskiy if (!c->zroot.znode) { 15721e51764aSArtem Bityutskiy c->zroot.znode = ubifs_load_znode(c, &c->zroot, NULL, 0); 15731e51764aSArtem Bityutskiy if (IS_ERR(c->zroot.znode)) { 15741e51764aSArtem Bityutskiy err = PTR_ERR(c->zroot.znode); 15751e51764aSArtem Bityutskiy c->zroot.znode = NULL; 15761e51764aSArtem Bityutskiy goto out_unlock; 15771e51764aSArtem Bityutskiy } 15781e51764aSArtem Bityutskiy } 15791e51764aSArtem Bityutskiy 15801e51764aSArtem Bityutskiy /* 15811e51764aSArtem Bityutskiy * We are going to traverse the indexing tree in the postorder manner. 15821e51764aSArtem Bityutskiy * Go down and find the leftmost indexing node where we are going to 15831e51764aSArtem Bityutskiy * start from. 15841e51764aSArtem Bityutskiy */ 15851e51764aSArtem Bityutskiy znode = c->zroot.znode; 15861e51764aSArtem Bityutskiy while (znode->level > 0) { 15871e51764aSArtem Bityutskiy zbr = &znode->zbranch[0]; 15881e51764aSArtem Bityutskiy child = zbr->znode; 15891e51764aSArtem Bityutskiy if (!child) { 15901e51764aSArtem Bityutskiy child = ubifs_load_znode(c, zbr, znode, 0); 15911e51764aSArtem Bityutskiy if (IS_ERR(child)) { 15921e51764aSArtem Bityutskiy err = PTR_ERR(child); 15931e51764aSArtem Bityutskiy goto out_unlock; 15941e51764aSArtem Bityutskiy } 15951e51764aSArtem Bityutskiy } 15961e51764aSArtem Bityutskiy 15971e51764aSArtem Bityutskiy znode = child; 15981e51764aSArtem Bityutskiy } 15991e51764aSArtem Bityutskiy 16001e51764aSArtem Bityutskiy /* Iterate over all indexing nodes */ 16011e51764aSArtem Bityutskiy while (1) { 16021e51764aSArtem Bityutskiy int idx; 16031e51764aSArtem Bityutskiy 16041e51764aSArtem Bityutskiy cond_resched(); 16051e51764aSArtem Bityutskiy 16061e51764aSArtem Bityutskiy if (znode_cb) { 16071e51764aSArtem Bityutskiy err = znode_cb(c, znode, priv); 16081e51764aSArtem Bityutskiy if (err) { 1609235c362bSSheng Yong ubifs_err(c, "znode checking function returned error %d", 161079fda517SArtem Bityutskiy err); 1611edf6be24SArtem Bityutskiy ubifs_dump_znode(c, znode); 16121e51764aSArtem Bityutskiy goto out_dump; 16131e51764aSArtem Bityutskiy } 16141e51764aSArtem Bityutskiy } 16151e51764aSArtem Bityutskiy if (leaf_cb && znode->level == 0) { 16161e51764aSArtem Bityutskiy for (idx = 0; idx < znode->child_cnt; idx++) { 16171e51764aSArtem Bityutskiy zbr = &znode->zbranch[idx]; 16181e51764aSArtem Bityutskiy err = leaf_cb(c, zbr, priv); 16191e51764aSArtem Bityutskiy if (err) { 1620235c362bSSheng Yong ubifs_err(c, "leaf checking function returned error %d, for leaf at LEB %d:%d", 16211e51764aSArtem Bityutskiy err, zbr->lnum, zbr->offs); 16221e51764aSArtem Bityutskiy goto out_dump; 16231e51764aSArtem Bityutskiy } 16241e51764aSArtem Bityutskiy } 16251e51764aSArtem Bityutskiy } 16261e51764aSArtem Bityutskiy 16271e51764aSArtem Bityutskiy if (!znode->parent) 16281e51764aSArtem Bityutskiy break; 16291e51764aSArtem Bityutskiy 16301e51764aSArtem Bityutskiy idx = znode->iip + 1; 16311e51764aSArtem Bityutskiy znode = znode->parent; 16321e51764aSArtem Bityutskiy if (idx < znode->child_cnt) { 16331e51764aSArtem Bityutskiy /* Switch to the next index in the parent */ 16341e51764aSArtem Bityutskiy zbr = &znode->zbranch[idx]; 16351e51764aSArtem Bityutskiy child = zbr->znode; 16361e51764aSArtem Bityutskiy if (!child) { 16371e51764aSArtem Bityutskiy child = ubifs_load_znode(c, zbr, znode, idx); 16381e51764aSArtem Bityutskiy if (IS_ERR(child)) { 16391e51764aSArtem Bityutskiy err = PTR_ERR(child); 16401e51764aSArtem Bityutskiy goto out_unlock; 16411e51764aSArtem Bityutskiy } 16421e51764aSArtem Bityutskiy zbr->znode = child; 16431e51764aSArtem Bityutskiy } 16441e51764aSArtem Bityutskiy znode = child; 16451e51764aSArtem Bityutskiy } else 16461e51764aSArtem Bityutskiy /* 16471e51764aSArtem Bityutskiy * This is the last child, switch to the parent and 16481e51764aSArtem Bityutskiy * continue. 16491e51764aSArtem Bityutskiy */ 16501e51764aSArtem Bityutskiy continue; 16511e51764aSArtem Bityutskiy 16521e51764aSArtem Bityutskiy /* Go to the lowest leftmost znode in the new sub-tree */ 16531e51764aSArtem Bityutskiy while (znode->level > 0) { 16541e51764aSArtem Bityutskiy zbr = &znode->zbranch[0]; 16551e51764aSArtem Bityutskiy child = zbr->znode; 16561e51764aSArtem Bityutskiy if (!child) { 16571e51764aSArtem Bityutskiy child = ubifs_load_znode(c, zbr, znode, 0); 16581e51764aSArtem Bityutskiy if (IS_ERR(child)) { 16591e51764aSArtem Bityutskiy err = PTR_ERR(child); 16601e51764aSArtem Bityutskiy goto out_unlock; 16611e51764aSArtem Bityutskiy } 16621e51764aSArtem Bityutskiy zbr->znode = child; 16631e51764aSArtem Bityutskiy } 16641e51764aSArtem Bityutskiy znode = child; 16651e51764aSArtem Bityutskiy } 16661e51764aSArtem Bityutskiy } 16671e51764aSArtem Bityutskiy 16681e51764aSArtem Bityutskiy mutex_unlock(&c->tnc_mutex); 16691e51764aSArtem Bityutskiy return 0; 16701e51764aSArtem Bityutskiy 16711e51764aSArtem Bityutskiy out_dump: 16721e51764aSArtem Bityutskiy if (znode->parent) 16731e51764aSArtem Bityutskiy zbr = &znode->parent->zbranch[znode->iip]; 16741e51764aSArtem Bityutskiy else 16751e51764aSArtem Bityutskiy zbr = &c->zroot; 1676235c362bSSheng Yong ubifs_msg(c, "dump of znode at LEB %d:%d", zbr->lnum, zbr->offs); 1677edf6be24SArtem Bityutskiy ubifs_dump_znode(c, znode); 16781e51764aSArtem Bityutskiy out_unlock: 16791e51764aSArtem Bityutskiy mutex_unlock(&c->tnc_mutex); 16801e51764aSArtem Bityutskiy return err; 16811e51764aSArtem Bityutskiy } 16821e51764aSArtem Bityutskiy 16831e51764aSArtem Bityutskiy /** 16841e51764aSArtem Bityutskiy * add_size - add znode size to partially calculated index size. 16851e51764aSArtem Bityutskiy * @c: UBIFS file-system description object 16861e51764aSArtem Bityutskiy * @znode: znode to add size for 16871e51764aSArtem Bityutskiy * @priv: partially calculated index size 16881e51764aSArtem Bityutskiy * 16891e51764aSArtem Bityutskiy * This is a helper function for 'dbg_check_idx_size()' which is called for 16901e51764aSArtem Bityutskiy * every indexing node and adds its size to the 'long long' variable pointed to 16911e51764aSArtem Bityutskiy * by @priv. 16921e51764aSArtem Bityutskiy */ 16931e51764aSArtem Bityutskiy static int add_size(struct ubifs_info *c, struct ubifs_znode *znode, void *priv) 16941e51764aSArtem Bityutskiy { 16951e51764aSArtem Bityutskiy long long *idx_size = priv; 16961e51764aSArtem Bityutskiy int add; 16971e51764aSArtem Bityutskiy 16981e51764aSArtem Bityutskiy add = ubifs_idx_node_sz(c, znode->child_cnt); 16991e51764aSArtem Bityutskiy add = ALIGN(add, 8); 17001e51764aSArtem Bityutskiy *idx_size += add; 17011e51764aSArtem Bityutskiy return 0; 17021e51764aSArtem Bityutskiy } 17031e51764aSArtem Bityutskiy 17041e51764aSArtem Bityutskiy /** 17051e51764aSArtem Bityutskiy * dbg_check_idx_size - check index size. 17061e51764aSArtem Bityutskiy * @c: UBIFS file-system description object 17071e51764aSArtem Bityutskiy * @idx_size: size to check 17081e51764aSArtem Bityutskiy * 17091e51764aSArtem Bityutskiy * This function walks the UBIFS index, calculates its size and checks that the 17101e51764aSArtem Bityutskiy * size is equivalent to @idx_size. Returns zero in case of success and a 17111e51764aSArtem Bityutskiy * negative error code in case of failure. 17121e51764aSArtem Bityutskiy */ 17131e51764aSArtem Bityutskiy int dbg_check_idx_size(struct ubifs_info *c, long long idx_size) 17141e51764aSArtem Bityutskiy { 17151e51764aSArtem Bityutskiy int err; 17161e51764aSArtem Bityutskiy long long calc = 0; 17171e51764aSArtem Bityutskiy 17188d7819b4SArtem Bityutskiy if (!dbg_is_chk_index(c)) 17191e51764aSArtem Bityutskiy return 0; 17201e51764aSArtem Bityutskiy 17211e51764aSArtem Bityutskiy err = dbg_walk_index(c, NULL, add_size, &calc); 17221e51764aSArtem Bityutskiy if (err) { 1723235c362bSSheng Yong ubifs_err(c, "error %d while walking the index", err); 17241e51764aSArtem Bityutskiy return err; 17251e51764aSArtem Bityutskiy } 17261e51764aSArtem Bityutskiy 17271e51764aSArtem Bityutskiy if (calc != idx_size) { 1728235c362bSSheng Yong ubifs_err(c, "index size check failed: calculated size is %lld, should be %lld", 172979fda517SArtem Bityutskiy calc, idx_size); 17301e51764aSArtem Bityutskiy dump_stack(); 17311e51764aSArtem Bityutskiy return -EINVAL; 17321e51764aSArtem Bityutskiy } 17331e51764aSArtem Bityutskiy 17341e51764aSArtem Bityutskiy return 0; 17351e51764aSArtem Bityutskiy } 17361e51764aSArtem Bityutskiy 17371e51764aSArtem Bityutskiy /** 17381e51764aSArtem Bityutskiy * struct fsck_inode - information about an inode used when checking the file-system. 17391e51764aSArtem Bityutskiy * @rb: link in the RB-tree of inodes 17401e51764aSArtem Bityutskiy * @inum: inode number 17411e51764aSArtem Bityutskiy * @mode: inode type, permissions, etc 17421e51764aSArtem Bityutskiy * @nlink: inode link count 17431e51764aSArtem Bityutskiy * @xattr_cnt: count of extended attributes 17441e51764aSArtem Bityutskiy * @references: how many directory/xattr entries refer this inode (calculated 17451e51764aSArtem Bityutskiy * while walking the index) 17461e51764aSArtem Bityutskiy * @calc_cnt: for directory inode count of child directories 17471e51764aSArtem Bityutskiy * @size: inode size (read from on-flash inode) 17481e51764aSArtem Bityutskiy * @xattr_sz: summary size of all extended attributes (read from on-flash 17491e51764aSArtem Bityutskiy * inode) 17501e51764aSArtem Bityutskiy * @calc_sz: for directories calculated directory size 17511e51764aSArtem Bityutskiy * @calc_xcnt: count of extended attributes 17521e51764aSArtem Bityutskiy * @calc_xsz: calculated summary size of all extended attributes 17531e51764aSArtem Bityutskiy * @xattr_nms: sum of lengths of all extended attribute names belonging to this 17541e51764aSArtem Bityutskiy * inode (read from on-flash inode) 17551e51764aSArtem Bityutskiy * @calc_xnms: calculated sum of lengths of all extended attribute names 17561e51764aSArtem Bityutskiy */ 17571e51764aSArtem Bityutskiy struct fsck_inode { 17581e51764aSArtem Bityutskiy struct rb_node rb; 17591e51764aSArtem Bityutskiy ino_t inum; 17601e51764aSArtem Bityutskiy umode_t mode; 17611e51764aSArtem Bityutskiy unsigned int nlink; 17621e51764aSArtem Bityutskiy unsigned int xattr_cnt; 17631e51764aSArtem Bityutskiy int references; 17641e51764aSArtem Bityutskiy int calc_cnt; 17651e51764aSArtem Bityutskiy long long size; 17661e51764aSArtem Bityutskiy unsigned int xattr_sz; 17671e51764aSArtem Bityutskiy long long calc_sz; 17681e51764aSArtem Bityutskiy long long calc_xcnt; 17691e51764aSArtem Bityutskiy long long calc_xsz; 17701e51764aSArtem Bityutskiy unsigned int xattr_nms; 17711e51764aSArtem Bityutskiy long long calc_xnms; 17721e51764aSArtem Bityutskiy }; 17731e51764aSArtem Bityutskiy 17741e51764aSArtem Bityutskiy /** 17751e51764aSArtem Bityutskiy * struct fsck_data - private FS checking information. 17761e51764aSArtem Bityutskiy * @inodes: RB-tree of all inodes (contains @struct fsck_inode objects) 17771e51764aSArtem Bityutskiy */ 17781e51764aSArtem Bityutskiy struct fsck_data { 17791e51764aSArtem Bityutskiy struct rb_root inodes; 17801e51764aSArtem Bityutskiy }; 17811e51764aSArtem Bityutskiy 17821e51764aSArtem Bityutskiy /** 17831e51764aSArtem Bityutskiy * add_inode - add inode information to RB-tree of inodes. 17841e51764aSArtem Bityutskiy * @c: UBIFS file-system description object 17851e51764aSArtem Bityutskiy * @fsckd: FS checking information 17861e51764aSArtem Bityutskiy * @ino: raw UBIFS inode to add 17871e51764aSArtem Bityutskiy * 17881e51764aSArtem Bityutskiy * This is a helper function for 'check_leaf()' which adds information about 17891e51764aSArtem Bityutskiy * inode @ino to the RB-tree of inodes. Returns inode information pointer in 17901e51764aSArtem Bityutskiy * case of success and a negative error code in case of failure. 17911e51764aSArtem Bityutskiy */ 17921e51764aSArtem Bityutskiy static struct fsck_inode *add_inode(struct ubifs_info *c, 17931e51764aSArtem Bityutskiy struct fsck_data *fsckd, 17941e51764aSArtem Bityutskiy struct ubifs_ino_node *ino) 17951e51764aSArtem Bityutskiy { 17961e51764aSArtem Bityutskiy struct rb_node **p, *parent = NULL; 17971e51764aSArtem Bityutskiy struct fsck_inode *fscki; 17981e51764aSArtem Bityutskiy ino_t inum = key_inum_flash(c, &ino->key); 179945cd5cddSArtem Bityutskiy struct inode *inode; 180045cd5cddSArtem Bityutskiy struct ubifs_inode *ui; 18011e51764aSArtem Bityutskiy 18021e51764aSArtem Bityutskiy p = &fsckd->inodes.rb_node; 18031e51764aSArtem Bityutskiy while (*p) { 18041e51764aSArtem Bityutskiy parent = *p; 18051e51764aSArtem Bityutskiy fscki = rb_entry(parent, struct fsck_inode, rb); 18061e51764aSArtem Bityutskiy if (inum < fscki->inum) 18071e51764aSArtem Bityutskiy p = &(*p)->rb_left; 18081e51764aSArtem Bityutskiy else if (inum > fscki->inum) 18091e51764aSArtem Bityutskiy p = &(*p)->rb_right; 18101e51764aSArtem Bityutskiy else 18111e51764aSArtem Bityutskiy return fscki; 18121e51764aSArtem Bityutskiy } 18131e51764aSArtem Bityutskiy 18141e51764aSArtem Bityutskiy if (inum > c->highest_inum) { 1815235c362bSSheng Yong ubifs_err(c, "too high inode number, max. is %lu", 1816e84461adSArtem Bityutskiy (unsigned long)c->highest_inum); 18171e51764aSArtem Bityutskiy return ERR_PTR(-EINVAL); 18181e51764aSArtem Bityutskiy } 18191e51764aSArtem Bityutskiy 18201e51764aSArtem Bityutskiy fscki = kzalloc(sizeof(struct fsck_inode), GFP_NOFS); 18211e51764aSArtem Bityutskiy if (!fscki) 18221e51764aSArtem Bityutskiy return ERR_PTR(-ENOMEM); 18231e51764aSArtem Bityutskiy 182445cd5cddSArtem Bityutskiy inode = ilookup(c->vfs_sb, inum); 182545cd5cddSArtem Bityutskiy 18261e51764aSArtem Bityutskiy fscki->inum = inum; 182745cd5cddSArtem Bityutskiy /* 182845cd5cddSArtem Bityutskiy * If the inode is present in the VFS inode cache, use it instead of 182945cd5cddSArtem Bityutskiy * the on-flash inode which might be out-of-date. E.g., the size might 183045cd5cddSArtem Bityutskiy * be out-of-date. If we do not do this, the following may happen, for 183145cd5cddSArtem Bityutskiy * example: 183245cd5cddSArtem Bityutskiy * 1. A power cut happens 183345cd5cddSArtem Bityutskiy * 2. We mount the file-system R/O, the replay process fixes up the 183445cd5cddSArtem Bityutskiy * inode size in the VFS cache, but on on-flash. 183545cd5cddSArtem Bityutskiy * 3. 'check_leaf()' fails because it hits a data node beyond inode 183645cd5cddSArtem Bityutskiy * size. 183745cd5cddSArtem Bityutskiy */ 183845cd5cddSArtem Bityutskiy if (!inode) { 18391e51764aSArtem Bityutskiy fscki->nlink = le32_to_cpu(ino->nlink); 18401e51764aSArtem Bityutskiy fscki->size = le64_to_cpu(ino->size); 18411e51764aSArtem Bityutskiy fscki->xattr_cnt = le32_to_cpu(ino->xattr_cnt); 18421e51764aSArtem Bityutskiy fscki->xattr_sz = le32_to_cpu(ino->xattr_size); 18431e51764aSArtem Bityutskiy fscki->xattr_nms = le32_to_cpu(ino->xattr_names); 18441e51764aSArtem Bityutskiy fscki->mode = le32_to_cpu(ino->mode); 184545cd5cddSArtem Bityutskiy } else { 184645cd5cddSArtem Bityutskiy ui = ubifs_inode(inode); 184745cd5cddSArtem Bityutskiy fscki->nlink = inode->i_nlink; 184845cd5cddSArtem Bityutskiy fscki->size = inode->i_size; 184945cd5cddSArtem Bityutskiy fscki->xattr_cnt = ui->xattr_cnt; 185045cd5cddSArtem Bityutskiy fscki->xattr_sz = ui->xattr_size; 185145cd5cddSArtem Bityutskiy fscki->xattr_nms = ui->xattr_names; 185245cd5cddSArtem Bityutskiy fscki->mode = inode->i_mode; 185345cd5cddSArtem Bityutskiy iput(inode); 185445cd5cddSArtem Bityutskiy } 185545cd5cddSArtem Bityutskiy 18561e51764aSArtem Bityutskiy if (S_ISDIR(fscki->mode)) { 18571e51764aSArtem Bityutskiy fscki->calc_sz = UBIFS_INO_NODE_SZ; 18581e51764aSArtem Bityutskiy fscki->calc_cnt = 2; 18591e51764aSArtem Bityutskiy } 186045cd5cddSArtem Bityutskiy 18611e51764aSArtem Bityutskiy rb_link_node(&fscki->rb, parent, p); 18621e51764aSArtem Bityutskiy rb_insert_color(&fscki->rb, &fsckd->inodes); 186345cd5cddSArtem Bityutskiy 18641e51764aSArtem Bityutskiy return fscki; 18651e51764aSArtem Bityutskiy } 18661e51764aSArtem Bityutskiy 18671e51764aSArtem Bityutskiy /** 18681e51764aSArtem Bityutskiy * search_inode - search inode in the RB-tree of inodes. 18691e51764aSArtem Bityutskiy * @fsckd: FS checking information 18701e51764aSArtem Bityutskiy * @inum: inode number to search 18711e51764aSArtem Bityutskiy * 18721e51764aSArtem Bityutskiy * This is a helper function for 'check_leaf()' which searches inode @inum in 18731e51764aSArtem Bityutskiy * the RB-tree of inodes and returns an inode information pointer or %NULL if 18741e51764aSArtem Bityutskiy * the inode was not found. 18751e51764aSArtem Bityutskiy */ 18761e51764aSArtem Bityutskiy static struct fsck_inode *search_inode(struct fsck_data *fsckd, ino_t inum) 18771e51764aSArtem Bityutskiy { 18781e51764aSArtem Bityutskiy struct rb_node *p; 18791e51764aSArtem Bityutskiy struct fsck_inode *fscki; 18801e51764aSArtem Bityutskiy 18811e51764aSArtem Bityutskiy p = fsckd->inodes.rb_node; 18821e51764aSArtem Bityutskiy while (p) { 18831e51764aSArtem Bityutskiy fscki = rb_entry(p, struct fsck_inode, rb); 18841e51764aSArtem Bityutskiy if (inum < fscki->inum) 18851e51764aSArtem Bityutskiy p = p->rb_left; 18861e51764aSArtem Bityutskiy else if (inum > fscki->inum) 18871e51764aSArtem Bityutskiy p = p->rb_right; 18881e51764aSArtem Bityutskiy else 18891e51764aSArtem Bityutskiy return fscki; 18901e51764aSArtem Bityutskiy } 18911e51764aSArtem Bityutskiy return NULL; 18921e51764aSArtem Bityutskiy } 18931e51764aSArtem Bityutskiy 18941e51764aSArtem Bityutskiy /** 18951e51764aSArtem Bityutskiy * read_add_inode - read inode node and add it to RB-tree of inodes. 18961e51764aSArtem Bityutskiy * @c: UBIFS file-system description object 18971e51764aSArtem Bityutskiy * @fsckd: FS checking information 18981e51764aSArtem Bityutskiy * @inum: inode number to read 18991e51764aSArtem Bityutskiy * 19001e51764aSArtem Bityutskiy * This is a helper function for 'check_leaf()' which finds inode node @inum in 19011e51764aSArtem Bityutskiy * the index, reads it, and adds it to the RB-tree of inodes. Returns inode 19021e51764aSArtem Bityutskiy * information pointer in case of success and a negative error code in case of 19031e51764aSArtem Bityutskiy * failure. 19041e51764aSArtem Bityutskiy */ 19051e51764aSArtem Bityutskiy static struct fsck_inode *read_add_inode(struct ubifs_info *c, 19061e51764aSArtem Bityutskiy struct fsck_data *fsckd, ino_t inum) 19071e51764aSArtem Bityutskiy { 19081e51764aSArtem Bityutskiy int n, err; 19091e51764aSArtem Bityutskiy union ubifs_key key; 19101e51764aSArtem Bityutskiy struct ubifs_znode *znode; 19111e51764aSArtem Bityutskiy struct ubifs_zbranch *zbr; 19121e51764aSArtem Bityutskiy struct ubifs_ino_node *ino; 19131e51764aSArtem Bityutskiy struct fsck_inode *fscki; 19141e51764aSArtem Bityutskiy 19151e51764aSArtem Bityutskiy fscki = search_inode(fsckd, inum); 19161e51764aSArtem Bityutskiy if (fscki) 19171e51764aSArtem Bityutskiy return fscki; 19181e51764aSArtem Bityutskiy 19191e51764aSArtem Bityutskiy ino_key_init(c, &key, inum); 19201e51764aSArtem Bityutskiy err = ubifs_lookup_level0(c, &key, &znode, &n); 19211e51764aSArtem Bityutskiy if (!err) { 1922235c362bSSheng Yong ubifs_err(c, "inode %lu not found in index", (unsigned long)inum); 19231e51764aSArtem Bityutskiy return ERR_PTR(-ENOENT); 19241e51764aSArtem Bityutskiy } else if (err < 0) { 1925235c362bSSheng Yong ubifs_err(c, "error %d while looking up inode %lu", 1926e84461adSArtem Bityutskiy err, (unsigned long)inum); 19271e51764aSArtem Bityutskiy return ERR_PTR(err); 19281e51764aSArtem Bityutskiy } 19291e51764aSArtem Bityutskiy 19301e51764aSArtem Bityutskiy zbr = &znode->zbranch[n]; 19311e51764aSArtem Bityutskiy if (zbr->len < UBIFS_INO_NODE_SZ) { 1932235c362bSSheng Yong ubifs_err(c, "bad node %lu node length %d", 1933e84461adSArtem Bityutskiy (unsigned long)inum, zbr->len); 19341e51764aSArtem Bityutskiy return ERR_PTR(-EINVAL); 19351e51764aSArtem Bityutskiy } 19361e51764aSArtem Bityutskiy 19371e51764aSArtem Bityutskiy ino = kmalloc(zbr->len, GFP_NOFS); 19381e51764aSArtem Bityutskiy if (!ino) 19391e51764aSArtem Bityutskiy return ERR_PTR(-ENOMEM); 19401e51764aSArtem Bityutskiy 19411e51764aSArtem Bityutskiy err = ubifs_tnc_read_node(c, zbr, ino); 19421e51764aSArtem Bityutskiy if (err) { 1943235c362bSSheng Yong ubifs_err(c, "cannot read inode node at LEB %d:%d, error %d", 19441e51764aSArtem Bityutskiy zbr->lnum, zbr->offs, err); 19451e51764aSArtem Bityutskiy kfree(ino); 19461e51764aSArtem Bityutskiy return ERR_PTR(err); 19471e51764aSArtem Bityutskiy } 19481e51764aSArtem Bityutskiy 19491e51764aSArtem Bityutskiy fscki = add_inode(c, fsckd, ino); 19501e51764aSArtem Bityutskiy kfree(ino); 19511e51764aSArtem Bityutskiy if (IS_ERR(fscki)) { 1952235c362bSSheng Yong ubifs_err(c, "error %ld while adding inode %lu node", 1953e84461adSArtem Bityutskiy PTR_ERR(fscki), (unsigned long)inum); 19541e51764aSArtem Bityutskiy return fscki; 19551e51764aSArtem Bityutskiy } 19561e51764aSArtem Bityutskiy 19571e51764aSArtem Bityutskiy return fscki; 19581e51764aSArtem Bityutskiy } 19591e51764aSArtem Bityutskiy 19601e51764aSArtem Bityutskiy /** 19611e51764aSArtem Bityutskiy * check_leaf - check leaf node. 19621e51764aSArtem Bityutskiy * @c: UBIFS file-system description object 19631e51764aSArtem Bityutskiy * @zbr: zbranch of the leaf node to check 19641e51764aSArtem Bityutskiy * @priv: FS checking information 19651e51764aSArtem Bityutskiy * 19661e51764aSArtem Bityutskiy * This is a helper function for 'dbg_check_filesystem()' which is called for 19671e51764aSArtem Bityutskiy * every single leaf node while walking the indexing tree. It checks that the 19681e51764aSArtem Bityutskiy * leaf node referred from the indexing tree exists, has correct CRC, and does 19691e51764aSArtem Bityutskiy * some other basic validation. This function is also responsible for building 19701e51764aSArtem Bityutskiy * an RB-tree of inodes - it adds all inodes into the RB-tree. It also 19711e51764aSArtem Bityutskiy * calculates reference count, size, etc for each inode in order to later 19721e51764aSArtem Bityutskiy * compare them to the information stored inside the inodes and detect possible 19731e51764aSArtem Bityutskiy * inconsistencies. Returns zero in case of success and a negative error code 19741e51764aSArtem Bityutskiy * in case of failure. 19751e51764aSArtem Bityutskiy */ 19761e51764aSArtem Bityutskiy static int check_leaf(struct ubifs_info *c, struct ubifs_zbranch *zbr, 19771e51764aSArtem Bityutskiy void *priv) 19781e51764aSArtem Bityutskiy { 19791e51764aSArtem Bityutskiy ino_t inum; 19801e51764aSArtem Bityutskiy void *node; 19811e51764aSArtem Bityutskiy struct ubifs_ch *ch; 19821e51764aSArtem Bityutskiy int err, type = key_type(c, &zbr->key); 19831e51764aSArtem Bityutskiy struct fsck_inode *fscki; 19841e51764aSArtem Bityutskiy 19851e51764aSArtem Bityutskiy if (zbr->len < UBIFS_CH_SZ) { 1986235c362bSSheng Yong ubifs_err(c, "bad leaf length %d (LEB %d:%d)", 19871e51764aSArtem Bityutskiy zbr->len, zbr->lnum, zbr->offs); 19881e51764aSArtem Bityutskiy return -EINVAL; 19891e51764aSArtem Bityutskiy } 19901e51764aSArtem Bityutskiy 19911e51764aSArtem Bityutskiy node = kmalloc(zbr->len, GFP_NOFS); 19921e51764aSArtem Bityutskiy if (!node) 19931e51764aSArtem Bityutskiy return -ENOMEM; 19941e51764aSArtem Bityutskiy 19951e51764aSArtem Bityutskiy err = ubifs_tnc_read_node(c, zbr, node); 19961e51764aSArtem Bityutskiy if (err) { 1997235c362bSSheng Yong ubifs_err(c, "cannot read leaf node at LEB %d:%d, error %d", 19981e51764aSArtem Bityutskiy zbr->lnum, zbr->offs, err); 19991e51764aSArtem Bityutskiy goto out_free; 20001e51764aSArtem Bityutskiy } 20011e51764aSArtem Bityutskiy 20021e51764aSArtem Bityutskiy /* If this is an inode node, add it to RB-tree of inodes */ 20031e51764aSArtem Bityutskiy if (type == UBIFS_INO_KEY) { 20041e51764aSArtem Bityutskiy fscki = add_inode(c, priv, node); 20051e51764aSArtem Bityutskiy if (IS_ERR(fscki)) { 20061e51764aSArtem Bityutskiy err = PTR_ERR(fscki); 2007235c362bSSheng Yong ubifs_err(c, "error %d while adding inode node", err); 20081e51764aSArtem Bityutskiy goto out_dump; 20091e51764aSArtem Bityutskiy } 20101e51764aSArtem Bityutskiy goto out; 20111e51764aSArtem Bityutskiy } 20121e51764aSArtem Bityutskiy 20131e51764aSArtem Bityutskiy if (type != UBIFS_DENT_KEY && type != UBIFS_XENT_KEY && 20141e51764aSArtem Bityutskiy type != UBIFS_DATA_KEY) { 2015235c362bSSheng Yong ubifs_err(c, "unexpected node type %d at LEB %d:%d", 20161e51764aSArtem Bityutskiy type, zbr->lnum, zbr->offs); 20171e51764aSArtem Bityutskiy err = -EINVAL; 20181e51764aSArtem Bityutskiy goto out_free; 20191e51764aSArtem Bityutskiy } 20201e51764aSArtem Bityutskiy 20211e51764aSArtem Bityutskiy ch = node; 20221e51764aSArtem Bityutskiy if (le64_to_cpu(ch->sqnum) > c->max_sqnum) { 2023235c362bSSheng Yong ubifs_err(c, "too high sequence number, max. is %llu", 20241e51764aSArtem Bityutskiy c->max_sqnum); 20251e51764aSArtem Bityutskiy err = -EINVAL; 20261e51764aSArtem Bityutskiy goto out_dump; 20271e51764aSArtem Bityutskiy } 20281e51764aSArtem Bityutskiy 20291e51764aSArtem Bityutskiy if (type == UBIFS_DATA_KEY) { 20301e51764aSArtem Bityutskiy long long blk_offs; 20311e51764aSArtem Bityutskiy struct ubifs_data_node *dn = node; 20321e51764aSArtem Bityutskiy 20336eb61d58SRichard Weinberger ubifs_assert(c, zbr->len >= UBIFS_DATA_NODE_SZ); 2034fb4325a3SArtem Bityutskiy 20351e51764aSArtem Bityutskiy /* 20361e51764aSArtem Bityutskiy * Search the inode node this data node belongs to and insert 20371e51764aSArtem Bityutskiy * it to the RB-tree of inodes. 20381e51764aSArtem Bityutskiy */ 20391e51764aSArtem Bityutskiy inum = key_inum_flash(c, &dn->key); 20401e51764aSArtem Bityutskiy fscki = read_add_inode(c, priv, inum); 20411e51764aSArtem Bityutskiy if (IS_ERR(fscki)) { 20421e51764aSArtem Bityutskiy err = PTR_ERR(fscki); 2043235c362bSSheng Yong ubifs_err(c, "error %d while processing data node and trying to find inode node %lu", 2044e84461adSArtem Bityutskiy err, (unsigned long)inum); 20451e51764aSArtem Bityutskiy goto out_dump; 20461e51764aSArtem Bityutskiy } 20471e51764aSArtem Bityutskiy 20481e51764aSArtem Bityutskiy /* Make sure the data node is within inode size */ 20491e51764aSArtem Bityutskiy blk_offs = key_block_flash(c, &dn->key); 20501e51764aSArtem Bityutskiy blk_offs <<= UBIFS_BLOCK_SHIFT; 20511e51764aSArtem Bityutskiy blk_offs += le32_to_cpu(dn->size); 20521e51764aSArtem Bityutskiy if (blk_offs > fscki->size) { 2053235c362bSSheng Yong ubifs_err(c, "data node at LEB %d:%d is not within inode size %lld", 205479fda517SArtem Bityutskiy zbr->lnum, zbr->offs, fscki->size); 20551e51764aSArtem Bityutskiy err = -EINVAL; 20561e51764aSArtem Bityutskiy goto out_dump; 20571e51764aSArtem Bityutskiy } 20581e51764aSArtem Bityutskiy } else { 20591e51764aSArtem Bityutskiy int nlen; 20601e51764aSArtem Bityutskiy struct ubifs_dent_node *dent = node; 20611e51764aSArtem Bityutskiy struct fsck_inode *fscki1; 20621e51764aSArtem Bityutskiy 20636eb61d58SRichard Weinberger ubifs_assert(c, zbr->len >= UBIFS_DENT_NODE_SZ); 2064fb4325a3SArtem Bityutskiy 20651e51764aSArtem Bityutskiy err = ubifs_validate_entry(c, dent); 20661e51764aSArtem Bityutskiy if (err) 20671e51764aSArtem Bityutskiy goto out_dump; 20681e51764aSArtem Bityutskiy 20691e51764aSArtem Bityutskiy /* 20701e51764aSArtem Bityutskiy * Search the inode node this entry refers to and the parent 20711e51764aSArtem Bityutskiy * inode node and insert them to the RB-tree of inodes. 20721e51764aSArtem Bityutskiy */ 20731e51764aSArtem Bityutskiy inum = le64_to_cpu(dent->inum); 20741e51764aSArtem Bityutskiy fscki = read_add_inode(c, priv, inum); 20751e51764aSArtem Bityutskiy if (IS_ERR(fscki)) { 20761e51764aSArtem Bityutskiy err = PTR_ERR(fscki); 2077235c362bSSheng Yong ubifs_err(c, "error %d while processing entry node and trying to find inode node %lu", 2078e84461adSArtem Bityutskiy err, (unsigned long)inum); 20791e51764aSArtem Bityutskiy goto out_dump; 20801e51764aSArtem Bityutskiy } 20811e51764aSArtem Bityutskiy 20821e51764aSArtem Bityutskiy /* Count how many direntries or xentries refers this inode */ 20831e51764aSArtem Bityutskiy fscki->references += 1; 20841e51764aSArtem Bityutskiy 20851e51764aSArtem Bityutskiy inum = key_inum_flash(c, &dent->key); 20861e51764aSArtem Bityutskiy fscki1 = read_add_inode(c, priv, inum); 20871e51764aSArtem Bityutskiy if (IS_ERR(fscki1)) { 2088b38882f5SRoel Kluin err = PTR_ERR(fscki1); 2089235c362bSSheng Yong ubifs_err(c, "error %d while processing entry node and trying to find parent inode node %lu", 2090e84461adSArtem Bityutskiy err, (unsigned long)inum); 20911e51764aSArtem Bityutskiy goto out_dump; 20921e51764aSArtem Bityutskiy } 20931e51764aSArtem Bityutskiy 20941e51764aSArtem Bityutskiy nlen = le16_to_cpu(dent->nlen); 20951e51764aSArtem Bityutskiy if (type == UBIFS_XENT_KEY) { 20961e51764aSArtem Bityutskiy fscki1->calc_xcnt += 1; 20971e51764aSArtem Bityutskiy fscki1->calc_xsz += CALC_DENT_SIZE(nlen); 20981e51764aSArtem Bityutskiy fscki1->calc_xsz += CALC_XATTR_BYTES(fscki->size); 20991e51764aSArtem Bityutskiy fscki1->calc_xnms += nlen; 21001e51764aSArtem Bityutskiy } else { 21011e51764aSArtem Bityutskiy fscki1->calc_sz += CALC_DENT_SIZE(nlen); 21021e51764aSArtem Bityutskiy if (dent->type == UBIFS_ITYPE_DIR) 21031e51764aSArtem Bityutskiy fscki1->calc_cnt += 1; 21041e51764aSArtem Bityutskiy } 21051e51764aSArtem Bityutskiy } 21061e51764aSArtem Bityutskiy 21071e51764aSArtem Bityutskiy out: 21081e51764aSArtem Bityutskiy kfree(node); 21091e51764aSArtem Bityutskiy return 0; 21101e51764aSArtem Bityutskiy 21111e51764aSArtem Bityutskiy out_dump: 2112235c362bSSheng Yong ubifs_msg(c, "dump of node at LEB %d:%d", zbr->lnum, zbr->offs); 2113edf6be24SArtem Bityutskiy ubifs_dump_node(c, node); 21141e51764aSArtem Bityutskiy out_free: 21151e51764aSArtem Bityutskiy kfree(node); 21161e51764aSArtem Bityutskiy return err; 21171e51764aSArtem Bityutskiy } 21181e51764aSArtem Bityutskiy 21191e51764aSArtem Bityutskiy /** 21201e51764aSArtem Bityutskiy * free_inodes - free RB-tree of inodes. 21211e51764aSArtem Bityutskiy * @fsckd: FS checking information 21221e51764aSArtem Bityutskiy */ 21231e51764aSArtem Bityutskiy static void free_inodes(struct fsck_data *fsckd) 21241e51764aSArtem Bityutskiy { 2125bb25e49fSCody P Schafer struct fsck_inode *fscki, *n; 21261e51764aSArtem Bityutskiy 2127bb25e49fSCody P Schafer rbtree_postorder_for_each_entry_safe(fscki, n, &fsckd->inodes, rb) 21281e51764aSArtem Bityutskiy kfree(fscki); 21291e51764aSArtem Bityutskiy } 21301e51764aSArtem Bityutskiy 21311e51764aSArtem Bityutskiy /** 21321e51764aSArtem Bityutskiy * check_inodes - checks all inodes. 21331e51764aSArtem Bityutskiy * @c: UBIFS file-system description object 21341e51764aSArtem Bityutskiy * @fsckd: FS checking information 21351e51764aSArtem Bityutskiy * 21361e51764aSArtem Bityutskiy * This is a helper function for 'dbg_check_filesystem()' which walks the 21371e51764aSArtem Bityutskiy * RB-tree of inodes after the index scan has been finished, and checks that 21381e51764aSArtem Bityutskiy * inode nlink, size, etc are correct. Returns zero if inodes are fine, 21391e51764aSArtem Bityutskiy * %-EINVAL if not, and a negative error code in case of failure. 21401e51764aSArtem Bityutskiy */ 21411e51764aSArtem Bityutskiy static int check_inodes(struct ubifs_info *c, struct fsck_data *fsckd) 21421e51764aSArtem Bityutskiy { 21431e51764aSArtem Bityutskiy int n, err; 21441e51764aSArtem Bityutskiy union ubifs_key key; 21451e51764aSArtem Bityutskiy struct ubifs_znode *znode; 21461e51764aSArtem Bityutskiy struct ubifs_zbranch *zbr; 21471e51764aSArtem Bityutskiy struct ubifs_ino_node *ino; 21481e51764aSArtem Bityutskiy struct fsck_inode *fscki; 21491e51764aSArtem Bityutskiy struct rb_node *this = rb_first(&fsckd->inodes); 21501e51764aSArtem Bityutskiy 21511e51764aSArtem Bityutskiy while (this) { 21521e51764aSArtem Bityutskiy fscki = rb_entry(this, struct fsck_inode, rb); 21531e51764aSArtem Bityutskiy this = rb_next(this); 21541e51764aSArtem Bityutskiy 21551e51764aSArtem Bityutskiy if (S_ISDIR(fscki->mode)) { 21561e51764aSArtem Bityutskiy /* 21571e51764aSArtem Bityutskiy * Directories have to have exactly one reference (they 21581e51764aSArtem Bityutskiy * cannot have hardlinks), although root inode is an 21591e51764aSArtem Bityutskiy * exception. 21601e51764aSArtem Bityutskiy */ 21611e51764aSArtem Bityutskiy if (fscki->inum != UBIFS_ROOT_INO && 21621e51764aSArtem Bityutskiy fscki->references != 1) { 2163235c362bSSheng Yong ubifs_err(c, "directory inode %lu has %d direntries which refer it, but should be 1", 2164e84461adSArtem Bityutskiy (unsigned long)fscki->inum, 21651e51764aSArtem Bityutskiy fscki->references); 21661e51764aSArtem Bityutskiy goto out_dump; 21671e51764aSArtem Bityutskiy } 21681e51764aSArtem Bityutskiy if (fscki->inum == UBIFS_ROOT_INO && 21691e51764aSArtem Bityutskiy fscki->references != 0) { 2170235c362bSSheng Yong ubifs_err(c, "root inode %lu has non-zero (%d) direntries which refer it", 2171e84461adSArtem Bityutskiy (unsigned long)fscki->inum, 2172e84461adSArtem Bityutskiy fscki->references); 21731e51764aSArtem Bityutskiy goto out_dump; 21741e51764aSArtem Bityutskiy } 21751e51764aSArtem Bityutskiy if (fscki->calc_sz != fscki->size) { 2176235c362bSSheng Yong ubifs_err(c, "directory inode %lu size is %lld, but calculated size is %lld", 2177e84461adSArtem Bityutskiy (unsigned long)fscki->inum, 2178e84461adSArtem Bityutskiy fscki->size, fscki->calc_sz); 21791e51764aSArtem Bityutskiy goto out_dump; 21801e51764aSArtem Bityutskiy } 21811e51764aSArtem Bityutskiy if (fscki->calc_cnt != fscki->nlink) { 2182235c362bSSheng Yong ubifs_err(c, "directory inode %lu nlink is %d, but calculated nlink is %d", 2183e84461adSArtem Bityutskiy (unsigned long)fscki->inum, 2184e84461adSArtem Bityutskiy fscki->nlink, fscki->calc_cnt); 21851e51764aSArtem Bityutskiy goto out_dump; 21861e51764aSArtem Bityutskiy } 21871e51764aSArtem Bityutskiy } else { 21881e51764aSArtem Bityutskiy if (fscki->references != fscki->nlink) { 2189235c362bSSheng Yong ubifs_err(c, "inode %lu nlink is %d, but calculated nlink is %d", 2190e84461adSArtem Bityutskiy (unsigned long)fscki->inum, 21911e51764aSArtem Bityutskiy fscki->nlink, fscki->references); 21921e51764aSArtem Bityutskiy goto out_dump; 21931e51764aSArtem Bityutskiy } 21941e51764aSArtem Bityutskiy } 21951e51764aSArtem Bityutskiy if (fscki->xattr_sz != fscki->calc_xsz) { 2196235c362bSSheng Yong ubifs_err(c, "inode %lu has xattr size %u, but calculated size is %lld", 2197e84461adSArtem Bityutskiy (unsigned long)fscki->inum, fscki->xattr_sz, 21981e51764aSArtem Bityutskiy fscki->calc_xsz); 21991e51764aSArtem Bityutskiy goto out_dump; 22001e51764aSArtem Bityutskiy } 22011e51764aSArtem Bityutskiy if (fscki->xattr_cnt != fscki->calc_xcnt) { 2202235c362bSSheng Yong ubifs_err(c, "inode %lu has %u xattrs, but calculated count is %lld", 2203e84461adSArtem Bityutskiy (unsigned long)fscki->inum, 22041e51764aSArtem Bityutskiy fscki->xattr_cnt, fscki->calc_xcnt); 22051e51764aSArtem Bityutskiy goto out_dump; 22061e51764aSArtem Bityutskiy } 22071e51764aSArtem Bityutskiy if (fscki->xattr_nms != fscki->calc_xnms) { 2208235c362bSSheng Yong ubifs_err(c, "inode %lu has xattr names' size %u, but calculated names' size is %lld", 2209e84461adSArtem Bityutskiy (unsigned long)fscki->inum, fscki->xattr_nms, 22101e51764aSArtem Bityutskiy fscki->calc_xnms); 22111e51764aSArtem Bityutskiy goto out_dump; 22121e51764aSArtem Bityutskiy } 22131e51764aSArtem Bityutskiy } 22141e51764aSArtem Bityutskiy 22151e51764aSArtem Bityutskiy return 0; 22161e51764aSArtem Bityutskiy 22171e51764aSArtem Bityutskiy out_dump: 22181e51764aSArtem Bityutskiy /* Read the bad inode and dump it */ 22191e51764aSArtem Bityutskiy ino_key_init(c, &key, fscki->inum); 22201e51764aSArtem Bityutskiy err = ubifs_lookup_level0(c, &key, &znode, &n); 22211e51764aSArtem Bityutskiy if (!err) { 2222235c362bSSheng Yong ubifs_err(c, "inode %lu not found in index", 2223e84461adSArtem Bityutskiy (unsigned long)fscki->inum); 22241e51764aSArtem Bityutskiy return -ENOENT; 22251e51764aSArtem Bityutskiy } else if (err < 0) { 2226235c362bSSheng Yong ubifs_err(c, "error %d while looking up inode %lu", 2227e84461adSArtem Bityutskiy err, (unsigned long)fscki->inum); 22281e51764aSArtem Bityutskiy return err; 22291e51764aSArtem Bityutskiy } 22301e51764aSArtem Bityutskiy 22311e51764aSArtem Bityutskiy zbr = &znode->zbranch[n]; 22321e51764aSArtem Bityutskiy ino = kmalloc(zbr->len, GFP_NOFS); 22331e51764aSArtem Bityutskiy if (!ino) 22341e51764aSArtem Bityutskiy return -ENOMEM; 22351e51764aSArtem Bityutskiy 22361e51764aSArtem Bityutskiy err = ubifs_tnc_read_node(c, zbr, ino); 22371e51764aSArtem Bityutskiy if (err) { 2238235c362bSSheng Yong ubifs_err(c, "cannot read inode node at LEB %d:%d, error %d", 22391e51764aSArtem Bityutskiy zbr->lnum, zbr->offs, err); 22401e51764aSArtem Bityutskiy kfree(ino); 22411e51764aSArtem Bityutskiy return err; 22421e51764aSArtem Bityutskiy } 22431e51764aSArtem Bityutskiy 2244235c362bSSheng Yong ubifs_msg(c, "dump of the inode %lu sitting in LEB %d:%d", 2245e84461adSArtem Bityutskiy (unsigned long)fscki->inum, zbr->lnum, zbr->offs); 2246edf6be24SArtem Bityutskiy ubifs_dump_node(c, ino); 22471e51764aSArtem Bityutskiy kfree(ino); 22481e51764aSArtem Bityutskiy return -EINVAL; 22491e51764aSArtem Bityutskiy } 22501e51764aSArtem Bityutskiy 22511e51764aSArtem Bityutskiy /** 22521e51764aSArtem Bityutskiy * dbg_check_filesystem - check the file-system. 22531e51764aSArtem Bityutskiy * @c: UBIFS file-system description object 22541e51764aSArtem Bityutskiy * 22551e51764aSArtem Bityutskiy * This function checks the file system, namely: 22561e51764aSArtem Bityutskiy * o makes sure that all leaf nodes exist and their CRCs are correct; 22571e51764aSArtem Bityutskiy * o makes sure inode nlink, size, xattr size/count are correct (for all 22581e51764aSArtem Bityutskiy * inodes). 22591e51764aSArtem Bityutskiy * 22601e51764aSArtem Bityutskiy * The function reads whole indexing tree and all nodes, so it is pretty 22611e51764aSArtem Bityutskiy * heavy-weight. Returns zero if the file-system is consistent, %-EINVAL if 22621e51764aSArtem Bityutskiy * not, and a negative error code in case of failure. 22631e51764aSArtem Bityutskiy */ 22641e51764aSArtem Bityutskiy int dbg_check_filesystem(struct ubifs_info *c) 22651e51764aSArtem Bityutskiy { 22661e51764aSArtem Bityutskiy int err; 22671e51764aSArtem Bityutskiy struct fsck_data fsckd; 22681e51764aSArtem Bityutskiy 22692b1844a8SArtem Bityutskiy if (!dbg_is_chk_fs(c)) 22701e51764aSArtem Bityutskiy return 0; 22711e51764aSArtem Bityutskiy 22721e51764aSArtem Bityutskiy fsckd.inodes = RB_ROOT; 22731e51764aSArtem Bityutskiy err = dbg_walk_index(c, check_leaf, NULL, &fsckd); 22741e51764aSArtem Bityutskiy if (err) 22751e51764aSArtem Bityutskiy goto out_free; 22761e51764aSArtem Bityutskiy 22771e51764aSArtem Bityutskiy err = check_inodes(c, &fsckd); 22781e51764aSArtem Bityutskiy if (err) 22791e51764aSArtem Bityutskiy goto out_free; 22801e51764aSArtem Bityutskiy 22811e51764aSArtem Bityutskiy free_inodes(&fsckd); 22821e51764aSArtem Bityutskiy return 0; 22831e51764aSArtem Bityutskiy 22841e51764aSArtem Bityutskiy out_free: 2285235c362bSSheng Yong ubifs_err(c, "file-system check failed with error %d", err); 22861e51764aSArtem Bityutskiy dump_stack(); 22871e51764aSArtem Bityutskiy free_inodes(&fsckd); 22881e51764aSArtem Bityutskiy return err; 22891e51764aSArtem Bityutskiy } 22901e51764aSArtem Bityutskiy 22913bb66b47SArtem Bityutskiy /** 22923bb66b47SArtem Bityutskiy * dbg_check_data_nodes_order - check that list of data nodes is sorted. 22933bb66b47SArtem Bityutskiy * @c: UBIFS file-system description object 22943bb66b47SArtem Bityutskiy * @head: the list of nodes ('struct ubifs_scan_node' objects) 22953bb66b47SArtem Bityutskiy * 22963bb66b47SArtem Bityutskiy * This function returns zero if the list of data nodes is sorted correctly, 22973bb66b47SArtem Bityutskiy * and %-EINVAL if not. 22983bb66b47SArtem Bityutskiy */ 22993bb66b47SArtem Bityutskiy int dbg_check_data_nodes_order(struct ubifs_info *c, struct list_head *head) 23003bb66b47SArtem Bityutskiy { 23013bb66b47SArtem Bityutskiy struct list_head *cur; 23023bb66b47SArtem Bityutskiy struct ubifs_scan_node *sa, *sb; 23033bb66b47SArtem Bityutskiy 23042b1844a8SArtem Bityutskiy if (!dbg_is_chk_gen(c)) 23053bb66b47SArtem Bityutskiy return 0; 23063bb66b47SArtem Bityutskiy 23073bb66b47SArtem Bityutskiy for (cur = head->next; cur->next != head; cur = cur->next) { 23083bb66b47SArtem Bityutskiy ino_t inuma, inumb; 23093bb66b47SArtem Bityutskiy uint32_t blka, blkb; 23103bb66b47SArtem Bityutskiy 23113bb66b47SArtem Bityutskiy cond_resched(); 23123bb66b47SArtem Bityutskiy sa = container_of(cur, struct ubifs_scan_node, list); 23133bb66b47SArtem Bityutskiy sb = container_of(cur->next, struct ubifs_scan_node, list); 23143bb66b47SArtem Bityutskiy 23153bb66b47SArtem Bityutskiy if (sa->type != UBIFS_DATA_NODE) { 2316235c362bSSheng Yong ubifs_err(c, "bad node type %d", sa->type); 2317edf6be24SArtem Bityutskiy ubifs_dump_node(c, sa->node); 23183bb66b47SArtem Bityutskiy return -EINVAL; 23193bb66b47SArtem Bityutskiy } 23203bb66b47SArtem Bityutskiy if (sb->type != UBIFS_DATA_NODE) { 2321235c362bSSheng Yong ubifs_err(c, "bad node type %d", sb->type); 2322edf6be24SArtem Bityutskiy ubifs_dump_node(c, sb->node); 23233bb66b47SArtem Bityutskiy return -EINVAL; 23243bb66b47SArtem Bityutskiy } 23253bb66b47SArtem Bityutskiy 23263bb66b47SArtem Bityutskiy inuma = key_inum(c, &sa->key); 23273bb66b47SArtem Bityutskiy inumb = key_inum(c, &sb->key); 23283bb66b47SArtem Bityutskiy 23293bb66b47SArtem Bityutskiy if (inuma < inumb) 23303bb66b47SArtem Bityutskiy continue; 23313bb66b47SArtem Bityutskiy if (inuma > inumb) { 2332235c362bSSheng Yong ubifs_err(c, "larger inum %lu goes before inum %lu", 23333bb66b47SArtem Bityutskiy (unsigned long)inuma, (unsigned long)inumb); 23343bb66b47SArtem Bityutskiy goto error_dump; 23353bb66b47SArtem Bityutskiy } 23363bb66b47SArtem Bityutskiy 23373bb66b47SArtem Bityutskiy blka = key_block(c, &sa->key); 23383bb66b47SArtem Bityutskiy blkb = key_block(c, &sb->key); 23393bb66b47SArtem Bityutskiy 23403bb66b47SArtem Bityutskiy if (blka > blkb) { 2341235c362bSSheng Yong ubifs_err(c, "larger block %u goes before %u", blka, blkb); 23423bb66b47SArtem Bityutskiy goto error_dump; 23433bb66b47SArtem Bityutskiy } 23443bb66b47SArtem Bityutskiy if (blka == blkb) { 2345235c362bSSheng Yong ubifs_err(c, "two data nodes for the same block"); 23463bb66b47SArtem Bityutskiy goto error_dump; 23473bb66b47SArtem Bityutskiy } 23483bb66b47SArtem Bityutskiy } 23493bb66b47SArtem Bityutskiy 23503bb66b47SArtem Bityutskiy return 0; 23513bb66b47SArtem Bityutskiy 23523bb66b47SArtem Bityutskiy error_dump: 2353edf6be24SArtem Bityutskiy ubifs_dump_node(c, sa->node); 2354edf6be24SArtem Bityutskiy ubifs_dump_node(c, sb->node); 23553bb66b47SArtem Bityutskiy return -EINVAL; 23563bb66b47SArtem Bityutskiy } 23573bb66b47SArtem Bityutskiy 23583bb66b47SArtem Bityutskiy /** 23593bb66b47SArtem Bityutskiy * dbg_check_nondata_nodes_order - check that list of data nodes is sorted. 23603bb66b47SArtem Bityutskiy * @c: UBIFS file-system description object 23613bb66b47SArtem Bityutskiy * @head: the list of nodes ('struct ubifs_scan_node' objects) 23623bb66b47SArtem Bityutskiy * 23633bb66b47SArtem Bityutskiy * This function returns zero if the list of non-data nodes is sorted correctly, 23643bb66b47SArtem Bityutskiy * and %-EINVAL if not. 23653bb66b47SArtem Bityutskiy */ 23663bb66b47SArtem Bityutskiy int dbg_check_nondata_nodes_order(struct ubifs_info *c, struct list_head *head) 23673bb66b47SArtem Bityutskiy { 23683bb66b47SArtem Bityutskiy struct list_head *cur; 23693bb66b47SArtem Bityutskiy struct ubifs_scan_node *sa, *sb; 23703bb66b47SArtem Bityutskiy 23712b1844a8SArtem Bityutskiy if (!dbg_is_chk_gen(c)) 23723bb66b47SArtem Bityutskiy return 0; 23733bb66b47SArtem Bityutskiy 23743bb66b47SArtem Bityutskiy for (cur = head->next; cur->next != head; cur = cur->next) { 23753bb66b47SArtem Bityutskiy ino_t inuma, inumb; 23763bb66b47SArtem Bityutskiy uint32_t hasha, hashb; 23773bb66b47SArtem Bityutskiy 23783bb66b47SArtem Bityutskiy cond_resched(); 23793bb66b47SArtem Bityutskiy sa = container_of(cur, struct ubifs_scan_node, list); 23803bb66b47SArtem Bityutskiy sb = container_of(cur->next, struct ubifs_scan_node, list); 23813bb66b47SArtem Bityutskiy 23823bb66b47SArtem Bityutskiy if (sa->type != UBIFS_INO_NODE && sa->type != UBIFS_DENT_NODE && 23833bb66b47SArtem Bityutskiy sa->type != UBIFS_XENT_NODE) { 2384235c362bSSheng Yong ubifs_err(c, "bad node type %d", sa->type); 2385edf6be24SArtem Bityutskiy ubifs_dump_node(c, sa->node); 23863bb66b47SArtem Bityutskiy return -EINVAL; 23873bb66b47SArtem Bityutskiy } 23886a258f7dSColin Ian King if (sb->type != UBIFS_INO_NODE && sb->type != UBIFS_DENT_NODE && 23896a258f7dSColin Ian King sb->type != UBIFS_XENT_NODE) { 2390235c362bSSheng Yong ubifs_err(c, "bad node type %d", sb->type); 2391edf6be24SArtem Bityutskiy ubifs_dump_node(c, sb->node); 23923bb66b47SArtem Bityutskiy return -EINVAL; 23933bb66b47SArtem Bityutskiy } 23943bb66b47SArtem Bityutskiy 23953bb66b47SArtem Bityutskiy if (sa->type != UBIFS_INO_NODE && sb->type == UBIFS_INO_NODE) { 2396235c362bSSheng Yong ubifs_err(c, "non-inode node goes before inode node"); 23973bb66b47SArtem Bityutskiy goto error_dump; 23983bb66b47SArtem Bityutskiy } 23993bb66b47SArtem Bityutskiy 24003bb66b47SArtem Bityutskiy if (sa->type == UBIFS_INO_NODE && sb->type != UBIFS_INO_NODE) 24013bb66b47SArtem Bityutskiy continue; 24023bb66b47SArtem Bityutskiy 24033bb66b47SArtem Bityutskiy if (sa->type == UBIFS_INO_NODE && sb->type == UBIFS_INO_NODE) { 24043bb66b47SArtem Bityutskiy /* Inode nodes are sorted in descending size order */ 24053bb66b47SArtem Bityutskiy if (sa->len < sb->len) { 2406235c362bSSheng Yong ubifs_err(c, "smaller inode node goes first"); 24073bb66b47SArtem Bityutskiy goto error_dump; 24083bb66b47SArtem Bityutskiy } 24093bb66b47SArtem Bityutskiy continue; 24103bb66b47SArtem Bityutskiy } 24113bb66b47SArtem Bityutskiy 24123bb66b47SArtem Bityutskiy /* 24133bb66b47SArtem Bityutskiy * This is either a dentry or xentry, which should be sorted in 24143bb66b47SArtem Bityutskiy * ascending (parent ino, hash) order. 24153bb66b47SArtem Bityutskiy */ 24163bb66b47SArtem Bityutskiy inuma = key_inum(c, &sa->key); 24173bb66b47SArtem Bityutskiy inumb = key_inum(c, &sb->key); 24183bb66b47SArtem Bityutskiy 24193bb66b47SArtem Bityutskiy if (inuma < inumb) 24203bb66b47SArtem Bityutskiy continue; 24213bb66b47SArtem Bityutskiy if (inuma > inumb) { 2422235c362bSSheng Yong ubifs_err(c, "larger inum %lu goes before inum %lu", 24233bb66b47SArtem Bityutskiy (unsigned long)inuma, (unsigned long)inumb); 24243bb66b47SArtem Bityutskiy goto error_dump; 24253bb66b47SArtem Bityutskiy } 24263bb66b47SArtem Bityutskiy 24273bb66b47SArtem Bityutskiy hasha = key_block(c, &sa->key); 24283bb66b47SArtem Bityutskiy hashb = key_block(c, &sb->key); 24293bb66b47SArtem Bityutskiy 24303bb66b47SArtem Bityutskiy if (hasha > hashb) { 2431235c362bSSheng Yong ubifs_err(c, "larger hash %u goes before %u", 2432c4361570SArtem Bityutskiy hasha, hashb); 24333bb66b47SArtem Bityutskiy goto error_dump; 24343bb66b47SArtem Bityutskiy } 24353bb66b47SArtem Bityutskiy } 24363bb66b47SArtem Bityutskiy 24373bb66b47SArtem Bityutskiy return 0; 24383bb66b47SArtem Bityutskiy 24393bb66b47SArtem Bityutskiy error_dump: 2440235c362bSSheng Yong ubifs_msg(c, "dumping first node"); 2441edf6be24SArtem Bityutskiy ubifs_dump_node(c, sa->node); 2442235c362bSSheng Yong ubifs_msg(c, "dumping second node"); 2443edf6be24SArtem Bityutskiy ubifs_dump_node(c, sb->node); 24443bb66b47SArtem Bityutskiy return -EINVAL; 24453bb66b47SArtem Bityutskiy return 0; 24463bb66b47SArtem Bityutskiy } 24473bb66b47SArtem Bityutskiy 2448a7fa94a9SArtem Bityutskiy static inline int chance(unsigned int n, unsigned int out_of) 24491e51764aSArtem Bityutskiy { 24503d251a5bSAkinobu Mita return !!((prandom_u32() % out_of) + 1 <= n); 2451a7fa94a9SArtem Bityutskiy 24521e51764aSArtem Bityutskiy } 24531e51764aSArtem Bityutskiy 2454d27462a5SArtem Bityutskiy static int power_cut_emulated(struct ubifs_info *c, int lnum, int write) 24551e51764aSArtem Bityutskiy { 2456f57cb188SArtem Bityutskiy struct ubifs_debug_info *d = c->dbg; 24571e51764aSArtem Bityutskiy 24586eb61d58SRichard Weinberger ubifs_assert(c, dbg_is_tst_rcvry(c)); 24591e51764aSArtem Bityutskiy 2460d27462a5SArtem Bityutskiy if (!d->pc_cnt) { 2461d27462a5SArtem Bityutskiy /* First call - decide delay to the power cut */ 24621e51764aSArtem Bityutskiy if (chance(1, 2)) { 2463a7fa94a9SArtem Bityutskiy unsigned long delay; 24641e51764aSArtem Bityutskiy 24651e51764aSArtem Bityutskiy if (chance(1, 2)) { 2466d27462a5SArtem Bityutskiy d->pc_delay = 1; 2467443b39cdSRichard Weinberger /* Fail within 1 minute */ 24683d251a5bSAkinobu Mita delay = prandom_u32() % 60000; 2469a7fa94a9SArtem Bityutskiy d->pc_timeout = jiffies; 2470a7fa94a9SArtem Bityutskiy d->pc_timeout += msecs_to_jiffies(delay); 2471235c362bSSheng Yong ubifs_warn(c, "failing after %lums", delay); 24721e51764aSArtem Bityutskiy } else { 2473d27462a5SArtem Bityutskiy d->pc_delay = 2; 24743d251a5bSAkinobu Mita delay = prandom_u32() % 10000; 2475a7fa94a9SArtem Bityutskiy /* Fail within 10000 operations */ 2476d27462a5SArtem Bityutskiy d->pc_cnt_max = delay; 2477235c362bSSheng Yong ubifs_warn(c, "failing after %lu calls", delay); 24781e51764aSArtem Bityutskiy } 24791e51764aSArtem Bityutskiy } 2480a7fa94a9SArtem Bityutskiy 2481d27462a5SArtem Bityutskiy d->pc_cnt += 1; 24821e51764aSArtem Bityutskiy } 2483a7fa94a9SArtem Bityutskiy 24841e51764aSArtem Bityutskiy /* Determine if failure delay has expired */ 2485a7fa94a9SArtem Bityutskiy if (d->pc_delay == 1 && time_before(jiffies, d->pc_timeout)) 24861e51764aSArtem Bityutskiy return 0; 2487a7fa94a9SArtem Bityutskiy if (d->pc_delay == 2 && d->pc_cnt++ < d->pc_cnt_max) 24881e51764aSArtem Bityutskiy return 0; 2489a7fa94a9SArtem Bityutskiy 24901e51764aSArtem Bityutskiy if (lnum == UBIFS_SB_LNUM) { 2491a7fa94a9SArtem Bityutskiy if (write && chance(1, 2)) 24921e51764aSArtem Bityutskiy return 0; 2493a7fa94a9SArtem Bityutskiy if (chance(19, 20)) 24941e51764aSArtem Bityutskiy return 0; 2495235c362bSSheng Yong ubifs_warn(c, "failing in super block LEB %d", lnum); 24961e51764aSArtem Bityutskiy } else if (lnum == UBIFS_MST_LNUM || lnum == UBIFS_MST_LNUM + 1) { 24971e51764aSArtem Bityutskiy if (chance(19, 20)) 24981e51764aSArtem Bityutskiy return 0; 2499235c362bSSheng Yong ubifs_warn(c, "failing in master LEB %d", lnum); 25001e51764aSArtem Bityutskiy } else if (lnum >= UBIFS_LOG_LNUM && lnum <= c->log_last) { 2501a7fa94a9SArtem Bityutskiy if (write && chance(99, 100)) 25021e51764aSArtem Bityutskiy return 0; 2503a7fa94a9SArtem Bityutskiy if (chance(399, 400)) 25041e51764aSArtem Bityutskiy return 0; 2505235c362bSSheng Yong ubifs_warn(c, "failing in log LEB %d", lnum); 25061e51764aSArtem Bityutskiy } else if (lnum >= c->lpt_first && lnum <= c->lpt_last) { 2507a7fa94a9SArtem Bityutskiy if (write && chance(7, 8)) 25081e51764aSArtem Bityutskiy return 0; 2509a7fa94a9SArtem Bityutskiy if (chance(19, 20)) 25101e51764aSArtem Bityutskiy return 0; 2511235c362bSSheng Yong ubifs_warn(c, "failing in LPT LEB %d", lnum); 25121e51764aSArtem Bityutskiy } else if (lnum >= c->orph_first && lnum <= c->orph_last) { 2513a7fa94a9SArtem Bityutskiy if (write && chance(1, 2)) 25141e51764aSArtem Bityutskiy return 0; 2515a7fa94a9SArtem Bityutskiy if (chance(9, 10)) 25161e51764aSArtem Bityutskiy return 0; 2517235c362bSSheng Yong ubifs_warn(c, "failing in orphan LEB %d", lnum); 25181e51764aSArtem Bityutskiy } else if (lnum == c->ihead_lnum) { 25191e51764aSArtem Bityutskiy if (chance(99, 100)) 25201e51764aSArtem Bityutskiy return 0; 2521235c362bSSheng Yong ubifs_warn(c, "failing in index head LEB %d", lnum); 25221e51764aSArtem Bityutskiy } else if (c->jheads && lnum == c->jheads[GCHD].wbuf.lnum) { 25231e51764aSArtem Bityutskiy if (chance(9, 10)) 25241e51764aSArtem Bityutskiy return 0; 2525235c362bSSheng Yong ubifs_warn(c, "failing in GC head LEB %d", lnum); 25261e51764aSArtem Bityutskiy } else if (write && !RB_EMPTY_ROOT(&c->buds) && 25271e51764aSArtem Bityutskiy !ubifs_search_bud(c, lnum)) { 25281e51764aSArtem Bityutskiy if (chance(19, 20)) 25291e51764aSArtem Bityutskiy return 0; 2530235c362bSSheng Yong ubifs_warn(c, "failing in non-bud LEB %d", lnum); 25311e51764aSArtem Bityutskiy } else if (c->cmt_state == COMMIT_RUNNING_BACKGROUND || 25321e51764aSArtem Bityutskiy c->cmt_state == COMMIT_RUNNING_REQUIRED) { 25331e51764aSArtem Bityutskiy if (chance(999, 1000)) 25341e51764aSArtem Bityutskiy return 0; 2535235c362bSSheng Yong ubifs_warn(c, "failing in bud LEB %d commit running", lnum); 25361e51764aSArtem Bityutskiy } else { 25371e51764aSArtem Bityutskiy if (chance(9999, 10000)) 25381e51764aSArtem Bityutskiy return 0; 2539235c362bSSheng Yong ubifs_warn(c, "failing in bud LEB %d commit not running", lnum); 25401e51764aSArtem Bityutskiy } 254124a4f800SArtem Bityutskiy 2542d27462a5SArtem Bityutskiy d->pc_happened = 1; 2543235c362bSSheng Yong ubifs_warn(c, "========== Power cut emulated =========="); 25441e51764aSArtem Bityutskiy dump_stack(); 25451e51764aSArtem Bityutskiy return 1; 25461e51764aSArtem Bityutskiy } 25471e51764aSArtem Bityutskiy 25488089ed79SArtem Bityutskiy static int corrupt_data(const struct ubifs_info *c, const void *buf, 25498089ed79SArtem Bityutskiy unsigned int len) 25501e51764aSArtem Bityutskiy { 2551cdd9fa8dSAkinobu Mita unsigned int from, to, ffs = chance(1, 2); 25521e51764aSArtem Bityutskiy unsigned char *p = (void *)buf; 25531e51764aSArtem Bityutskiy 255458a4e237SMats Kärrman from = prandom_u32() % len; 255558a4e237SMats Kärrman /* Corruption span max to end of write unit */ 255658a4e237SMats Kärrman to = min(len, ALIGN(from + 1, c->max_write_size)); 2557a7fa94a9SArtem Bityutskiy 2558235c362bSSheng Yong ubifs_warn(c, "filled bytes %u-%u with %s", from, to - 1, 2559a7fa94a9SArtem Bityutskiy ffs ? "0xFFs" : "random data"); 2560a7fa94a9SArtem Bityutskiy 2561a7fa94a9SArtem Bityutskiy if (ffs) 2562cdd9fa8dSAkinobu Mita memset(p + from, 0xFF, to - from); 2563a7fa94a9SArtem Bityutskiy else 2564cdd9fa8dSAkinobu Mita prandom_bytes(p + from, to - from); 25658089ed79SArtem Bityutskiy 25668089ed79SArtem Bityutskiy return to; 25671e51764aSArtem Bityutskiy } 25681e51764aSArtem Bityutskiy 2569f57cb188SArtem Bityutskiy int dbg_leb_write(struct ubifs_info *c, int lnum, const void *buf, 2570b36a261eSRichard Weinberger int offs, int len) 25711e51764aSArtem Bityutskiy { 257216dfd804SAdrian Hunter int err, failing; 25731e51764aSArtem Bityutskiy 25748f6983abSshengyong if (dbg_is_power_cut(c)) 25751a29af8bSArtem Bityutskiy return -EROFS; 2576d27462a5SArtem Bityutskiy 2577d27462a5SArtem Bityutskiy failing = power_cut_emulated(c, lnum, 1); 2578c23e9b75SMats Kärrman if (failing) { 25798089ed79SArtem Bityutskiy len = corrupt_data(c, buf, len); 2580235c362bSSheng Yong ubifs_warn(c, "actually write %d bytes to LEB %d:%d (the buffer was corrupted)", 25818089ed79SArtem Bityutskiy len, lnum, offs); 2582c23e9b75SMats Kärrman } 2583b36a261eSRichard Weinberger err = ubi_leb_write(c->ubi, lnum, buf, offs, len); 25841e51764aSArtem Bityutskiy if (err) 25851e51764aSArtem Bityutskiy return err; 258616dfd804SAdrian Hunter if (failing) 25871a29af8bSArtem Bityutskiy return -EROFS; 25881e51764aSArtem Bityutskiy return 0; 25891e51764aSArtem Bityutskiy } 25901e51764aSArtem Bityutskiy 2591f57cb188SArtem Bityutskiy int dbg_leb_change(struct ubifs_info *c, int lnum, const void *buf, 2592b36a261eSRichard Weinberger int len) 25931e51764aSArtem Bityutskiy { 25941e51764aSArtem Bityutskiy int err; 25951e51764aSArtem Bityutskiy 25968f6983abSshengyong if (dbg_is_power_cut(c)) 2597d27462a5SArtem Bityutskiy return -EROFS; 2598d27462a5SArtem Bityutskiy if (power_cut_emulated(c, lnum, 1)) 25991a29af8bSArtem Bityutskiy return -EROFS; 2600b36a261eSRichard Weinberger err = ubi_leb_change(c->ubi, lnum, buf, len); 26011e51764aSArtem Bityutskiy if (err) 26021e51764aSArtem Bityutskiy return err; 2603d27462a5SArtem Bityutskiy if (power_cut_emulated(c, lnum, 1)) 26041a29af8bSArtem Bityutskiy return -EROFS; 26051e51764aSArtem Bityutskiy return 0; 26061e51764aSArtem Bityutskiy } 26071e51764aSArtem Bityutskiy 2608f57cb188SArtem Bityutskiy int dbg_leb_unmap(struct ubifs_info *c, int lnum) 26091e51764aSArtem Bityutskiy { 26101e51764aSArtem Bityutskiy int err; 26111e51764aSArtem Bityutskiy 26128f6983abSshengyong if (dbg_is_power_cut(c)) 2613d27462a5SArtem Bityutskiy return -EROFS; 2614d27462a5SArtem Bityutskiy if (power_cut_emulated(c, lnum, 0)) 26151a29af8bSArtem Bityutskiy return -EROFS; 2616f57cb188SArtem Bityutskiy err = ubi_leb_unmap(c->ubi, lnum); 26171e51764aSArtem Bityutskiy if (err) 26181e51764aSArtem Bityutskiy return err; 2619d27462a5SArtem Bityutskiy if (power_cut_emulated(c, lnum, 0)) 26201a29af8bSArtem Bityutskiy return -EROFS; 26211e51764aSArtem Bityutskiy return 0; 26221e51764aSArtem Bityutskiy } 26231e51764aSArtem Bityutskiy 2624b36a261eSRichard Weinberger int dbg_leb_map(struct ubifs_info *c, int lnum) 26251e51764aSArtem Bityutskiy { 26261e51764aSArtem Bityutskiy int err; 26271e51764aSArtem Bityutskiy 26288f6983abSshengyong if (dbg_is_power_cut(c)) 2629d27462a5SArtem Bityutskiy return -EROFS; 2630d27462a5SArtem Bityutskiy if (power_cut_emulated(c, lnum, 0)) 26311a29af8bSArtem Bityutskiy return -EROFS; 2632b36a261eSRichard Weinberger err = ubi_leb_map(c->ubi, lnum); 26331e51764aSArtem Bityutskiy if (err) 26341e51764aSArtem Bityutskiy return err; 2635d27462a5SArtem Bityutskiy if (power_cut_emulated(c, lnum, 0)) 26361a29af8bSArtem Bityutskiy return -EROFS; 26371e51764aSArtem Bityutskiy return 0; 26381e51764aSArtem Bityutskiy } 26391e51764aSArtem Bityutskiy 2640552ff317SArtem Bityutskiy /* 2641552ff317SArtem Bityutskiy * Root directory for UBIFS stuff in debugfs. Contains sub-directories which 2642552ff317SArtem Bityutskiy * contain the stuff specific to particular file-system mounts. 2643552ff317SArtem Bityutskiy */ 264484abf972SArtem Bityutskiy static struct dentry *dfs_rootdir; 2645552ff317SArtem Bityutskiy 26467dae997dSArtem Bityutskiy static int dfs_file_open(struct inode *inode, struct file *file) 2647552ff317SArtem Bityutskiy { 2648552ff317SArtem Bityutskiy file->private_data = inode->i_private; 26491bbfc848SArtem Bityutskiy return nonseekable_open(inode, file); 2650552ff317SArtem Bityutskiy } 2651552ff317SArtem Bityutskiy 265228488fc2SArtem Bityutskiy /** 265328488fc2SArtem Bityutskiy * provide_user_output - provide output to the user reading a debugfs file. 265428488fc2SArtem Bityutskiy * @val: boolean value for the answer 265528488fc2SArtem Bityutskiy * @u: the buffer to store the answer at 265628488fc2SArtem Bityutskiy * @count: size of the buffer 265728488fc2SArtem Bityutskiy * @ppos: position in the @u output buffer 265828488fc2SArtem Bityutskiy * 265928488fc2SArtem Bityutskiy * This is a simple helper function which stores @val boolean value in the user 266028488fc2SArtem Bityutskiy * buffer when the user reads one of UBIFS debugfs files. Returns amount of 266128488fc2SArtem Bityutskiy * bytes written to @u in case of success and a negative error code in case of 266228488fc2SArtem Bityutskiy * failure. 266328488fc2SArtem Bityutskiy */ 266428488fc2SArtem Bityutskiy static int provide_user_output(int val, char __user *u, size_t count, 266528488fc2SArtem Bityutskiy loff_t *ppos) 266628488fc2SArtem Bityutskiy { 266728488fc2SArtem Bityutskiy char buf[3]; 266828488fc2SArtem Bityutskiy 266928488fc2SArtem Bityutskiy if (val) 267028488fc2SArtem Bityutskiy buf[0] = '1'; 267128488fc2SArtem Bityutskiy else 267228488fc2SArtem Bityutskiy buf[0] = '0'; 267328488fc2SArtem Bityutskiy buf[1] = '\n'; 267428488fc2SArtem Bityutskiy buf[2] = 0x00; 267528488fc2SArtem Bityutskiy 267628488fc2SArtem Bityutskiy return simple_read_from_buffer(u, count, ppos, buf, 2); 267728488fc2SArtem Bityutskiy } 267828488fc2SArtem Bityutskiy 267981e79d38SArtem Bityutskiy static ssize_t dfs_file_read(struct file *file, char __user *u, size_t count, 268081e79d38SArtem Bityutskiy loff_t *ppos) 268181e79d38SArtem Bityutskiy { 268281e79d38SArtem Bityutskiy struct dentry *dent = file->f_path.dentry; 268381e79d38SArtem Bityutskiy struct ubifs_info *c = file->private_data; 268481e79d38SArtem Bityutskiy struct ubifs_debug_info *d = c->dbg; 268581e79d38SArtem Bityutskiy int val; 268681e79d38SArtem Bityutskiy 268781e79d38SArtem Bityutskiy if (dent == d->dfs_chk_gen) 268881e79d38SArtem Bityutskiy val = d->chk_gen; 268981e79d38SArtem Bityutskiy else if (dent == d->dfs_chk_index) 269081e79d38SArtem Bityutskiy val = d->chk_index; 269181e79d38SArtem Bityutskiy else if (dent == d->dfs_chk_orph) 269281e79d38SArtem Bityutskiy val = d->chk_orph; 269381e79d38SArtem Bityutskiy else if (dent == d->dfs_chk_lprops) 269481e79d38SArtem Bityutskiy val = d->chk_lprops; 269581e79d38SArtem Bityutskiy else if (dent == d->dfs_chk_fs) 269681e79d38SArtem Bityutskiy val = d->chk_fs; 269781e79d38SArtem Bityutskiy else if (dent == d->dfs_tst_rcvry) 269881e79d38SArtem Bityutskiy val = d->tst_rcvry; 269906bef945SArtem Bityutskiy else if (dent == d->dfs_ro_error) 270006bef945SArtem Bityutskiy val = c->ro_error; 270181e79d38SArtem Bityutskiy else 270281e79d38SArtem Bityutskiy return -EINVAL; 270381e79d38SArtem Bityutskiy 270428488fc2SArtem Bityutskiy return provide_user_output(val, u, count, ppos); 270528488fc2SArtem Bityutskiy } 270681e79d38SArtem Bityutskiy 270728488fc2SArtem Bityutskiy /** 270828488fc2SArtem Bityutskiy * interpret_user_input - interpret user debugfs file input. 270928488fc2SArtem Bityutskiy * @u: user-provided buffer with the input 271028488fc2SArtem Bityutskiy * @count: buffer size 271128488fc2SArtem Bityutskiy * 271228488fc2SArtem Bityutskiy * This is a helper function which interpret user input to a boolean UBIFS 271328488fc2SArtem Bityutskiy * debugfs file. Returns %0 or %1 in case of success and a negative error code 271428488fc2SArtem Bityutskiy * in case of failure. 271528488fc2SArtem Bityutskiy */ 271628488fc2SArtem Bityutskiy static int interpret_user_input(const char __user *u, size_t count) 271728488fc2SArtem Bityutskiy { 271828488fc2SArtem Bityutskiy size_t buf_size; 271928488fc2SArtem Bityutskiy char buf[8]; 272028488fc2SArtem Bityutskiy 272128488fc2SArtem Bityutskiy buf_size = min_t(size_t, count, (sizeof(buf) - 1)); 272228488fc2SArtem Bityutskiy if (copy_from_user(buf, u, buf_size)) 272328488fc2SArtem Bityutskiy return -EFAULT; 272428488fc2SArtem Bityutskiy 272528488fc2SArtem Bityutskiy if (buf[0] == '1') 272628488fc2SArtem Bityutskiy return 1; 272728488fc2SArtem Bityutskiy else if (buf[0] == '0') 272828488fc2SArtem Bityutskiy return 0; 272928488fc2SArtem Bityutskiy 273028488fc2SArtem Bityutskiy return -EINVAL; 273181e79d38SArtem Bityutskiy } 273281e79d38SArtem Bityutskiy 273381e79d38SArtem Bityutskiy static ssize_t dfs_file_write(struct file *file, const char __user *u, 2734552ff317SArtem Bityutskiy size_t count, loff_t *ppos) 2735552ff317SArtem Bityutskiy { 2736552ff317SArtem Bityutskiy struct ubifs_info *c = file->private_data; 2737552ff317SArtem Bityutskiy struct ubifs_debug_info *d = c->dbg; 273881e79d38SArtem Bityutskiy struct dentry *dent = file->f_path.dentry; 273981e79d38SArtem Bityutskiy int val; 2740552ff317SArtem Bityutskiy 274181e79d38SArtem Bityutskiy if (file->f_path.dentry == d->dfs_dump_lprops) { 2742edf6be24SArtem Bityutskiy ubifs_dump_lprops(c); 274381e79d38SArtem Bityutskiy return count; 274481e79d38SArtem Bityutskiy } 274581e79d38SArtem Bityutskiy if (file->f_path.dentry == d->dfs_dump_budg) { 2746edf6be24SArtem Bityutskiy ubifs_dump_budg(c, &c->bi); 274781e79d38SArtem Bityutskiy return count; 274881e79d38SArtem Bityutskiy } 274981e79d38SArtem Bityutskiy if (file->f_path.dentry == d->dfs_dump_tnc) { 2750552ff317SArtem Bityutskiy mutex_lock(&c->tnc_mutex); 2751edf6be24SArtem Bityutskiy ubifs_dump_tnc(c); 2752552ff317SArtem Bityutskiy mutex_unlock(&c->tnc_mutex); 275381e79d38SArtem Bityutskiy return count; 275481e79d38SArtem Bityutskiy } 275581e79d38SArtem Bityutskiy 275628488fc2SArtem Bityutskiy val = interpret_user_input(u, count); 275728488fc2SArtem Bityutskiy if (val < 0) 275828488fc2SArtem Bityutskiy return val; 275981e79d38SArtem Bityutskiy 276081e79d38SArtem Bityutskiy if (dent == d->dfs_chk_gen) 276181e79d38SArtem Bityutskiy d->chk_gen = val; 276281e79d38SArtem Bityutskiy else if (dent == d->dfs_chk_index) 276381e79d38SArtem Bityutskiy d->chk_index = val; 276481e79d38SArtem Bityutskiy else if (dent == d->dfs_chk_orph) 276581e79d38SArtem Bityutskiy d->chk_orph = val; 276681e79d38SArtem Bityutskiy else if (dent == d->dfs_chk_lprops) 276781e79d38SArtem Bityutskiy d->chk_lprops = val; 276881e79d38SArtem Bityutskiy else if (dent == d->dfs_chk_fs) 276981e79d38SArtem Bityutskiy d->chk_fs = val; 277081e79d38SArtem Bityutskiy else if (dent == d->dfs_tst_rcvry) 277181e79d38SArtem Bityutskiy d->tst_rcvry = val; 277206bef945SArtem Bityutskiy else if (dent == d->dfs_ro_error) 277306bef945SArtem Bityutskiy c->ro_error = !!val; 277481e79d38SArtem Bityutskiy else 2775552ff317SArtem Bityutskiy return -EINVAL; 2776552ff317SArtem Bityutskiy 2777552ff317SArtem Bityutskiy return count; 2778552ff317SArtem Bityutskiy } 2779552ff317SArtem Bityutskiy 278084abf972SArtem Bityutskiy static const struct file_operations dfs_fops = { 27817dae997dSArtem Bityutskiy .open = dfs_file_open, 278281e79d38SArtem Bityutskiy .read = dfs_file_read, 278381e79d38SArtem Bityutskiy .write = dfs_file_write, 2784552ff317SArtem Bityutskiy .owner = THIS_MODULE, 27851bbfc848SArtem Bityutskiy .llseek = no_llseek, 2786552ff317SArtem Bityutskiy }; 2787552ff317SArtem Bityutskiy 2788552ff317SArtem Bityutskiy /** 2789552ff317SArtem Bityutskiy * dbg_debugfs_init_fs - initialize debugfs for UBIFS instance. 2790552ff317SArtem Bityutskiy * @c: UBIFS file-system description object 2791552ff317SArtem Bityutskiy * 2792702d6a83SGreg Kroah-Hartman * This function creates all debugfs files for this instance of UBIFS. 2793552ff317SArtem Bityutskiy * 2794552ff317SArtem Bityutskiy * Note, the only reason we have not merged this function with the 2795552ff317SArtem Bityutskiy * 'ubifs_debugging_init()' function is because it is better to initialize 2796552ff317SArtem Bityutskiy * debugfs interfaces at the very end of the mount process, and remove them at 2797552ff317SArtem Bityutskiy * the very beginning of the mount process. 2798552ff317SArtem Bityutskiy */ 2799702d6a83SGreg Kroah-Hartman void dbg_debugfs_init_fs(struct ubifs_info *c) 2800552ff317SArtem Bityutskiy { 2801d71cac59SGreg Kroah-Hartman int n; 2802552ff317SArtem Bityutskiy const char *fname; 2803552ff317SArtem Bityutskiy struct ubifs_debug_info *d = c->dbg; 2804552ff317SArtem Bityutskiy 2805ae380ce0SArtem Bityutskiy n = snprintf(d->dfs_dir_name, UBIFS_DFS_DIR_LEN + 1, UBIFS_DFS_DIR_NAME, 2806ae380ce0SArtem Bityutskiy c->vi.ubi_num, c->vi.vol_id); 2807ae380ce0SArtem Bityutskiy if (n == UBIFS_DFS_DIR_LEN) { 2808ae380ce0SArtem Bityutskiy /* The array size is too small */ 2809702d6a83SGreg Kroah-Hartman return; 2810ae380ce0SArtem Bityutskiy } 2811ae380ce0SArtem Bityutskiy 2812cc6a86b9SArtem Bityutskiy fname = d->dfs_dir_name; 2813702d6a83SGreg Kroah-Hartman d->dfs_dir = debugfs_create_dir(fname, dfs_rootdir); 2814552ff317SArtem Bityutskiy 2815552ff317SArtem Bityutskiy fname = "dump_lprops"; 2816702d6a83SGreg Kroah-Hartman d->dfs_dump_lprops = debugfs_create_file(fname, S_IWUSR, d->dfs_dir, c, 2817702d6a83SGreg Kroah-Hartman &dfs_fops); 2818552ff317SArtem Bityutskiy 2819552ff317SArtem Bityutskiy fname = "dump_budg"; 2820702d6a83SGreg Kroah-Hartman d->dfs_dump_budg = debugfs_create_file(fname, S_IWUSR, d->dfs_dir, c, 2821702d6a83SGreg Kroah-Hartman &dfs_fops); 2822552ff317SArtem Bityutskiy 2823552ff317SArtem Bityutskiy fname = "dump_tnc"; 2824702d6a83SGreg Kroah-Hartman d->dfs_dump_tnc = debugfs_create_file(fname, S_IWUSR, d->dfs_dir, c, 2825702d6a83SGreg Kroah-Hartman &dfs_fops); 2826552ff317SArtem Bityutskiy 282781e79d38SArtem Bityutskiy fname = "chk_general"; 2828702d6a83SGreg Kroah-Hartman d->dfs_chk_gen = debugfs_create_file(fname, S_IRUSR | S_IWUSR, 2829702d6a83SGreg Kroah-Hartman d->dfs_dir, c, &dfs_fops); 283081e79d38SArtem Bityutskiy 283181e79d38SArtem Bityutskiy fname = "chk_index"; 2832702d6a83SGreg Kroah-Hartman d->dfs_chk_index = debugfs_create_file(fname, S_IRUSR | S_IWUSR, 2833702d6a83SGreg Kroah-Hartman d->dfs_dir, c, &dfs_fops); 283481e79d38SArtem Bityutskiy 283581e79d38SArtem Bityutskiy fname = "chk_orphans"; 2836702d6a83SGreg Kroah-Hartman d->dfs_chk_orph = debugfs_create_file(fname, S_IRUSR | S_IWUSR, 2837702d6a83SGreg Kroah-Hartman d->dfs_dir, c, &dfs_fops); 283881e79d38SArtem Bityutskiy 283981e79d38SArtem Bityutskiy fname = "chk_lprops"; 2840702d6a83SGreg Kroah-Hartman d->dfs_chk_lprops = debugfs_create_file(fname, S_IRUSR | S_IWUSR, 2841702d6a83SGreg Kroah-Hartman d->dfs_dir, c, &dfs_fops); 284281e79d38SArtem Bityutskiy 284381e79d38SArtem Bityutskiy fname = "chk_fs"; 2844702d6a83SGreg Kroah-Hartman d->dfs_chk_fs = debugfs_create_file(fname, S_IRUSR | S_IWUSR, 2845702d6a83SGreg Kroah-Hartman d->dfs_dir, c, &dfs_fops); 284681e79d38SArtem Bityutskiy 284781e79d38SArtem Bityutskiy fname = "tst_recovery"; 2848702d6a83SGreg Kroah-Hartman d->dfs_tst_rcvry = debugfs_create_file(fname, S_IRUSR | S_IWUSR, 2849702d6a83SGreg Kroah-Hartman d->dfs_dir, c, &dfs_fops); 285081e79d38SArtem Bityutskiy 285106bef945SArtem Bityutskiy fname = "ro_error"; 2852702d6a83SGreg Kroah-Hartman d->dfs_ro_error = debugfs_create_file(fname, S_IRUSR | S_IWUSR, 2853702d6a83SGreg Kroah-Hartman d->dfs_dir, c, &dfs_fops); 2854552ff317SArtem Bityutskiy } 2855552ff317SArtem Bityutskiy 2856552ff317SArtem Bityutskiy /** 2857552ff317SArtem Bityutskiy * dbg_debugfs_exit_fs - remove all debugfs files. 2858552ff317SArtem Bityutskiy * @c: UBIFS file-system description object 2859552ff317SArtem Bityutskiy */ 2860552ff317SArtem Bityutskiy void dbg_debugfs_exit_fs(struct ubifs_info *c) 2861552ff317SArtem Bityutskiy { 286284abf972SArtem Bityutskiy debugfs_remove_recursive(c->dbg->dfs_dir); 2863552ff317SArtem Bityutskiy } 2864552ff317SArtem Bityutskiy 2865e7717060SArtem Bityutskiy struct ubifs_global_debug_info ubifs_dbg; 2866e7717060SArtem Bityutskiy 2867e7717060SArtem Bityutskiy static struct dentry *dfs_chk_gen; 2868e7717060SArtem Bityutskiy static struct dentry *dfs_chk_index; 2869e7717060SArtem Bityutskiy static struct dentry *dfs_chk_orph; 2870e7717060SArtem Bityutskiy static struct dentry *dfs_chk_lprops; 2871e7717060SArtem Bityutskiy static struct dentry *dfs_chk_fs; 2872e7717060SArtem Bityutskiy static struct dentry *dfs_tst_rcvry; 2873e7717060SArtem Bityutskiy 2874e7717060SArtem Bityutskiy static ssize_t dfs_global_file_read(struct file *file, char __user *u, 2875e7717060SArtem Bityutskiy size_t count, loff_t *ppos) 2876e7717060SArtem Bityutskiy { 2877e7717060SArtem Bityutskiy struct dentry *dent = file->f_path.dentry; 2878e7717060SArtem Bityutskiy int val; 2879e7717060SArtem Bityutskiy 2880e7717060SArtem Bityutskiy if (dent == dfs_chk_gen) 2881e7717060SArtem Bityutskiy val = ubifs_dbg.chk_gen; 2882e7717060SArtem Bityutskiy else if (dent == dfs_chk_index) 2883e7717060SArtem Bityutskiy val = ubifs_dbg.chk_index; 2884e7717060SArtem Bityutskiy else if (dent == dfs_chk_orph) 2885e7717060SArtem Bityutskiy val = ubifs_dbg.chk_orph; 2886e7717060SArtem Bityutskiy else if (dent == dfs_chk_lprops) 2887e7717060SArtem Bityutskiy val = ubifs_dbg.chk_lprops; 2888e7717060SArtem Bityutskiy else if (dent == dfs_chk_fs) 2889e7717060SArtem Bityutskiy val = ubifs_dbg.chk_fs; 2890e7717060SArtem Bityutskiy else if (dent == dfs_tst_rcvry) 2891e7717060SArtem Bityutskiy val = ubifs_dbg.tst_rcvry; 2892e7717060SArtem Bityutskiy else 2893e7717060SArtem Bityutskiy return -EINVAL; 2894e7717060SArtem Bityutskiy 2895e7717060SArtem Bityutskiy return provide_user_output(val, u, count, ppos); 2896e7717060SArtem Bityutskiy } 2897e7717060SArtem Bityutskiy 2898e7717060SArtem Bityutskiy static ssize_t dfs_global_file_write(struct file *file, const char __user *u, 2899e7717060SArtem Bityutskiy size_t count, loff_t *ppos) 2900e7717060SArtem Bityutskiy { 2901e7717060SArtem Bityutskiy struct dentry *dent = file->f_path.dentry; 2902e7717060SArtem Bityutskiy int val; 2903e7717060SArtem Bityutskiy 2904e7717060SArtem Bityutskiy val = interpret_user_input(u, count); 2905e7717060SArtem Bityutskiy if (val < 0) 2906e7717060SArtem Bityutskiy return val; 2907e7717060SArtem Bityutskiy 2908e7717060SArtem Bityutskiy if (dent == dfs_chk_gen) 2909e7717060SArtem Bityutskiy ubifs_dbg.chk_gen = val; 2910e7717060SArtem Bityutskiy else if (dent == dfs_chk_index) 2911e7717060SArtem Bityutskiy ubifs_dbg.chk_index = val; 2912e7717060SArtem Bityutskiy else if (dent == dfs_chk_orph) 2913e7717060SArtem Bityutskiy ubifs_dbg.chk_orph = val; 2914e7717060SArtem Bityutskiy else if (dent == dfs_chk_lprops) 2915e7717060SArtem Bityutskiy ubifs_dbg.chk_lprops = val; 2916e7717060SArtem Bityutskiy else if (dent == dfs_chk_fs) 2917e7717060SArtem Bityutskiy ubifs_dbg.chk_fs = val; 2918e7717060SArtem Bityutskiy else if (dent == dfs_tst_rcvry) 2919e7717060SArtem Bityutskiy ubifs_dbg.tst_rcvry = val; 2920e7717060SArtem Bityutskiy else 2921e7717060SArtem Bityutskiy return -EINVAL; 2922e7717060SArtem Bityutskiy 2923e7717060SArtem Bityutskiy return count; 2924e7717060SArtem Bityutskiy } 2925e7717060SArtem Bityutskiy 2926e7717060SArtem Bityutskiy static const struct file_operations dfs_global_fops = { 2927e7717060SArtem Bityutskiy .read = dfs_global_file_read, 2928e7717060SArtem Bityutskiy .write = dfs_global_file_write, 2929e7717060SArtem Bityutskiy .owner = THIS_MODULE, 2930e7717060SArtem Bityutskiy .llseek = no_llseek, 2931e7717060SArtem Bityutskiy }; 2932e7717060SArtem Bityutskiy 29337dae997dSArtem Bityutskiy /** 29347dae997dSArtem Bityutskiy * dbg_debugfs_init - initialize debugfs file-system. 29357dae997dSArtem Bityutskiy * 29367dae997dSArtem Bityutskiy * UBIFS uses debugfs file-system to expose various debugging knobs to 29377dae997dSArtem Bityutskiy * user-space. This function creates "ubifs" directory in the debugfs 2938702d6a83SGreg Kroah-Hartman * file-system. 29397dae997dSArtem Bityutskiy */ 2940702d6a83SGreg Kroah-Hartman void dbg_debugfs_init(void) 29417dae997dSArtem Bityutskiy { 2942e7717060SArtem Bityutskiy const char *fname; 2943818039c7SArtem Bityutskiy 2944e7717060SArtem Bityutskiy fname = "ubifs"; 2945702d6a83SGreg Kroah-Hartman dfs_rootdir = debugfs_create_dir(fname, NULL); 2946e7717060SArtem Bityutskiy 2947e7717060SArtem Bityutskiy fname = "chk_general"; 2948702d6a83SGreg Kroah-Hartman dfs_chk_gen = debugfs_create_file(fname, S_IRUSR | S_IWUSR, dfs_rootdir, 2949702d6a83SGreg Kroah-Hartman NULL, &dfs_global_fops); 2950e7717060SArtem Bityutskiy 2951e7717060SArtem Bityutskiy fname = "chk_index"; 2952702d6a83SGreg Kroah-Hartman dfs_chk_index = debugfs_create_file(fname, S_IRUSR | S_IWUSR, 2953702d6a83SGreg Kroah-Hartman dfs_rootdir, NULL, &dfs_global_fops); 2954e7717060SArtem Bityutskiy 2955e7717060SArtem Bityutskiy fname = "chk_orphans"; 2956702d6a83SGreg Kroah-Hartman dfs_chk_orph = debugfs_create_file(fname, S_IRUSR | S_IWUSR, 2957702d6a83SGreg Kroah-Hartman dfs_rootdir, NULL, &dfs_global_fops); 2958e7717060SArtem Bityutskiy 2959e7717060SArtem Bityutskiy fname = "chk_lprops"; 2960702d6a83SGreg Kroah-Hartman dfs_chk_lprops = debugfs_create_file(fname, S_IRUSR | S_IWUSR, 2961702d6a83SGreg Kroah-Hartman dfs_rootdir, NULL, &dfs_global_fops); 2962e7717060SArtem Bityutskiy 2963e7717060SArtem Bityutskiy fname = "chk_fs"; 2964702d6a83SGreg Kroah-Hartman dfs_chk_fs = debugfs_create_file(fname, S_IRUSR | S_IWUSR, dfs_rootdir, 2965702d6a83SGreg Kroah-Hartman NULL, &dfs_global_fops); 2966e7717060SArtem Bityutskiy 2967e7717060SArtem Bityutskiy fname = "tst_recovery"; 2968702d6a83SGreg Kroah-Hartman dfs_tst_rcvry = debugfs_create_file(fname, S_IRUSR | S_IWUSR, 2969702d6a83SGreg Kroah-Hartman dfs_rootdir, NULL, &dfs_global_fops); 29707dae997dSArtem Bityutskiy } 29717dae997dSArtem Bityutskiy 29727dae997dSArtem Bityutskiy /** 29737dae997dSArtem Bityutskiy * dbg_debugfs_exit - remove the "ubifs" directory from debugfs file-system. 29747dae997dSArtem Bityutskiy */ 29757dae997dSArtem Bityutskiy void dbg_debugfs_exit(void) 29767dae997dSArtem Bityutskiy { 2977e7717060SArtem Bityutskiy debugfs_remove_recursive(dfs_rootdir); 29787dae997dSArtem Bityutskiy } 29797dae997dSArtem Bityutskiy 29802e52eb74SRichard Weinberger void ubifs_assert_failed(struct ubifs_info *c, const char *expr, 29812e52eb74SRichard Weinberger const char *file, int line) 29822e52eb74SRichard Weinberger { 29832e52eb74SRichard Weinberger ubifs_err(c, "UBIFS assert failed: %s, in %s:%u", expr, file, line); 29842e52eb74SRichard Weinberger 29852e52eb74SRichard Weinberger switch (c->assert_action) { 29862e52eb74SRichard Weinberger case ASSACT_PANIC: 29872e52eb74SRichard Weinberger BUG(); 29882e52eb74SRichard Weinberger break; 29892e52eb74SRichard Weinberger 29902e52eb74SRichard Weinberger case ASSACT_RO: 29912e52eb74SRichard Weinberger ubifs_ro_mode(c, -EINVAL); 29922e52eb74SRichard Weinberger break; 29932e52eb74SRichard Weinberger 29942e52eb74SRichard Weinberger case ASSACT_REPORT: 29952e52eb74SRichard Weinberger default: 29962e52eb74SRichard Weinberger dump_stack(); 29972e52eb74SRichard Weinberger break; 29982e52eb74SRichard Weinberger 29992e52eb74SRichard Weinberger } 30002e52eb74SRichard Weinberger } 30012e52eb74SRichard Weinberger 30027dae997dSArtem Bityutskiy /** 30037dae997dSArtem Bityutskiy * ubifs_debugging_init - initialize UBIFS debugging. 30047dae997dSArtem Bityutskiy * @c: UBIFS file-system description object 30057dae997dSArtem Bityutskiy * 30067dae997dSArtem Bityutskiy * This function initializes debugging-related data for the file system. 30077dae997dSArtem Bityutskiy * Returns zero in case of success and a negative error code in case of 30087dae997dSArtem Bityutskiy * failure. 30097dae997dSArtem Bityutskiy */ 30107dae997dSArtem Bityutskiy int ubifs_debugging_init(struct ubifs_info *c) 30117dae997dSArtem Bityutskiy { 30127dae997dSArtem Bityutskiy c->dbg = kzalloc(sizeof(struct ubifs_debug_info), GFP_KERNEL); 30137dae997dSArtem Bityutskiy if (!c->dbg) 30147dae997dSArtem Bityutskiy return -ENOMEM; 30157dae997dSArtem Bityutskiy 30167dae997dSArtem Bityutskiy return 0; 30177dae997dSArtem Bityutskiy } 30187dae997dSArtem Bityutskiy 30197dae997dSArtem Bityutskiy /** 30207dae997dSArtem Bityutskiy * ubifs_debugging_exit - free debugging data. 30217dae997dSArtem Bityutskiy * @c: UBIFS file-system description object 30227dae997dSArtem Bityutskiy */ 30237dae997dSArtem Bityutskiy void ubifs_debugging_exit(struct ubifs_info *c) 30247dae997dSArtem Bityutskiy { 30257dae997dSArtem Bityutskiy kfree(c->dbg); 30267dae997dSArtem Bityutskiy } 3027