blob: 24f8250cad734e8db09b92be14aba5a1a309a5fd [file] [log] [blame]
Theodore Ts'odf614db2002-02-25 04:28:45 -05001/*
2 * htree.c --- hash tree routines
Theodore Ts'oefc6f622008-08-27 23:07:54 -04003 *
Theodore Ts'odf614db2002-02-25 04:28:45 -05004 * Copyright (C) 2002 Theodore Ts'o. This file may be redistributed
5 * under the terms of the GNU Public License.
6 */
7
Theodore Ts'od1154eb2011-09-18 17:34:37 -04008#include "config.h"
Theodore Ts'odf614db2002-02-25 04:28:45 -05009#include <stdio.h>
10#include <unistd.h>
11#include <stdlib.h>
12#include <ctype.h>
13#include <string.h>
14#include <time.h>
15#ifdef HAVE_ERRNO_H
16#include <errno.h>
17#endif
18#include <sys/types.h>
19#ifdef HAVE_GETOPT_H
20#include <getopt.h>
Theodore Ts'oefc6f622008-08-27 23:07:54 -040021#else
Theodore Ts'odf614db2002-02-25 04:28:45 -050022extern int optind;
23extern char *optarg;
24#endif
Theodore Ts'odf614db2002-02-25 04:28:45 -050025
26#include "debugfs.h"
Theodore Ts'o42080a82009-07-11 23:23:16 -040027#include "uuid/uuid.h"
28#include "e2p/e2p.h"
Theodore Ts'odf614db2002-02-25 04:28:45 -050029
30static FILE *pager;
31
Theodore Ts'odf614db2002-02-25 04:28:45 -050032static void htree_dump_leaf_node(ext2_filsys fs, ext2_ino_t ino,
33 struct ext2_inode *inode,
Theodore Ts'o3e699062002-10-13 23:56:28 -040034 struct ext2_dx_root_info * rootnode,
Valerie Aurora Henson048786d2009-09-07 22:46:17 -040035 blk64_t blk, char *buf)
Theodore Ts'odf614db2002-02-25 04:28:45 -050036{
37 errcode_t errcode;
38 struct ext2_dir_entry *dirent;
Theodore Ts'o54434922003-12-07 01:28:50 -050039 int thislen, col = 0;
40 unsigned int offset = 0;
Brian Behlendorfb7729002007-03-21 15:09:15 -040041 char name[EXT2_NAME_LEN + 1];
Darrick J. Wong9c23b892011-11-20 15:47:02 -050042 char tmp[EXT2_NAME_LEN + 64];
Valerie Aurora Henson048786d2009-09-07 22:46:17 -040043 blk64_t pblk;
Theodore Ts'o226515d2008-08-08 11:56:07 -040044 ext2_dirhash_t hash, minor_hash;
Theodore Ts'o8a480352009-06-21 21:07:38 -040045 unsigned int rec_len;
46 int hash_alg;
Theodore Ts'oefc6f622008-08-27 23:07:54 -040047
Valerie Aurora Henson048786d2009-09-07 22:46:17 -040048 errcode = ext2fs_bmap2(fs, ino, inode, buf, 0, blk, 0, &pblk);
Theodore Ts'odf614db2002-02-25 04:28:45 -050049 if (errcode) {
50 com_err("htree_dump_leaf_node", errcode,
Valerie Aurora Henson048786d2009-09-07 22:46:17 -040051 "while mapping logical block %llu\n", blk);
Theodore Ts'odf614db2002-02-25 04:28:45 -050052 return;
53 }
54
Theodore Ts'oe6575ce2012-10-14 04:54:20 -040055 fprintf(pager, "Reading directory block %llu, phys %llu\n", blk, pblk);
Theodore Ts'o8132d842002-10-02 22:07:17 -040056 errcode = ext2fs_read_dir_block2(current_fs, pblk, buf, 0);
Theodore Ts'odf614db2002-02-25 04:28:45 -050057 if (errcode) {
58 com_err("htree_dump_leaf_node", errcode,
Valerie Aurora Henson048786d2009-09-07 22:46:17 -040059 "while reading block %llu (%llu)\n",
60 blk, pblk);
Theodore Ts'odf614db2002-02-25 04:28:45 -050061 return;
62 }
Theodore Ts'of77704e2006-11-11 22:32:35 -050063 hash_alg = rootnode->hash_version;
64 if ((hash_alg <= EXT2_HASH_TEA) &&
65 (fs->super->s_flags & EXT2_FLAGS_UNSIGNED_HASH))
66 hash_alg += 3;
Theodore Ts'odf614db2002-02-25 04:28:45 -050067
68 while (offset < fs->blocksize) {
69 dirent = (struct ext2_dir_entry *) (buf + offset);
Theodore Ts'o8a480352009-06-21 21:07:38 -040070 errcode = ext2fs_get_rec_len(fs, dirent, &rec_len);
71 if (errcode) {
72 com_err("htree_dump_leaf_inode", errcode,
73 "while getting rec_len for block %lu",
74 (unsigned long) blk);
75 return;
76 }
Theodore Ts'o5dd77db2008-08-25 21:08:19 -040077 if (((offset + rec_len) > fs->blocksize) ||
78 (rec_len < 8) ||
79 ((rec_len % 4) != 0) ||
Theodore Ts'o42080a82009-07-11 23:23:16 -040080 ((((unsigned) dirent->name_len & 0xFF)+8) > rec_len)) {
Valerie Aurora Henson048786d2009-09-07 22:46:17 -040081 fprintf(pager, "Corrupted directory block (%llu)!\n",
82 blk);
Theodore Ts'odf614db2002-02-25 04:28:45 -050083 break;
84 }
Eric Sandeen11ba79b2011-09-16 15:49:17 -050085 thislen = dirent->name_len & 0xFF;
Theodore Ts'odf614db2002-02-25 04:28:45 -050086 strncpy(name, dirent->name, thislen);
87 name[thislen] = '\0';
Theodore Ts'of77704e2006-11-11 22:32:35 -050088 errcode = ext2fs_dirhash(hash_alg, name,
Theodore Ts'o3e699062002-10-13 23:56:28 -040089 thislen, fs->super->s_hash_seed,
Theodore Ts'o226515d2008-08-08 11:56:07 -040090 &hash, &minor_hash);
Theodore Ts'o52783e02002-03-11 15:04:45 -050091 if (errcode)
92 com_err("htree_dump_leaf_node", errcode,
93 "while calculating hash");
Darrick J. Wong9c23b892011-11-20 15:47:02 -050094 snprintf(tmp, EXT2_NAME_LEN + 64, "%u 0x%08x-%08x (%d) %s ",
95 dirent->inode, hash, minor_hash, rec_len, name);
Theodore Ts'odf614db2002-02-25 04:28:45 -050096 thislen = strlen(tmp);
97 if (col + thislen > 80) {
98 fprintf(pager, "\n");
99 col = 0;
100 }
101 fprintf(pager, "%s", tmp);
102 col += thislen;
Theodore Ts'o5dd77db2008-08-25 21:08:19 -0400103 offset += rec_len;
Theodore Ts'odf614db2002-02-25 04:28:45 -0500104 }
105 fprintf(pager, "\n");
106}
107
108
109static void htree_dump_int_block(ext2_filsys fs, ext2_ino_t ino,
110 struct ext2_inode *inode,
Theodore Ts'o3e699062002-10-13 23:56:28 -0400111 struct ext2_dx_root_info * rootnode,
Valerie Aurora Henson048786d2009-09-07 22:46:17 -0400112 blk64_t blk, char *buf, int level);
Theodore Ts'odf614db2002-02-25 04:28:45 -0500113
114
115static void htree_dump_int_node(ext2_filsys fs, ext2_ino_t ino,
116 struct ext2_inode *inode,
Theodore Ts'o3e699062002-10-13 23:56:28 -0400117 struct ext2_dx_root_info * rootnode,
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400118 struct ext2_dx_entry *ent,
Theodore Ts'odf614db2002-02-25 04:28:45 -0500119 char *buf, int level)
120{
Theodore Ts'o621732c2002-07-18 22:19:51 -0400121 struct ext2_dx_countlimit limit;
122 struct ext2_dx_entry e;
Theodore Ts'o42e5b5f2002-09-22 15:27:28 -0400123 int hash, i;
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400124
Theodore Ts'odf614db2002-02-25 04:28:45 -0500125
Theodore Ts'o621732c2002-07-18 22:19:51 -0400126 limit = *((struct ext2_dx_countlimit *) ent);
127 limit.count = ext2fs_le16_to_cpu(limit.count);
128 limit.limit = ext2fs_le16_to_cpu(limit.limit);
Theodore Ts'odf614db2002-02-25 04:28:45 -0500129
Theodore Ts'o621732c2002-07-18 22:19:51 -0400130 fprintf(pager, "Number of entries (count): %d\n", limit.count);
131 fprintf(pager, "Number of entries (limit): %d\n", limit.limit);
Theodore Ts'odf614db2002-02-25 04:28:45 -0500132
Theodore Ts'o42e5b5f2002-09-22 15:27:28 -0400133 for (i=0; i < limit.count; i++) {
134 hash = i ? ext2fs_le32_to_cpu(ent[i].hash) : 0;
Eric Sandeend0ff90d2006-09-12 14:56:15 -0400135 fprintf(pager, "Entry #%d: Hash 0x%08x%s, block %u\n", i,
Theodore Ts'o42e5b5f2002-09-22 15:27:28 -0400136 hash, (hash & 1) ? " (**)" : "",
Theodore Ts'o621732c2002-07-18 22:19:51 -0400137 ext2fs_le32_to_cpu(ent[i].block));
Theodore Ts'o42e5b5f2002-09-22 15:27:28 -0400138 }
Theodore Ts'odf614db2002-02-25 04:28:45 -0500139
140 fprintf(pager, "\n");
141
Theodore Ts'o621732c2002-07-18 22:19:51 -0400142 for (i=0; i < limit.count; i++) {
143 e.hash = ext2fs_le32_to_cpu(ent[i].hash);
144 e.block = ext2fs_le32_to_cpu(ent[i].block);
Takashi Sato8deb80a2006-03-18 21:43:46 -0500145 fprintf(pager, "Entry #%d: Hash 0x%08x, block %u\n", i,
Theodore Ts'o621732c2002-07-18 22:19:51 -0400146 i ? e.hash : 0, e.block);
Theodore Ts'odf614db2002-02-25 04:28:45 -0500147 if (level)
Theodore Ts'o3e699062002-10-13 23:56:28 -0400148 htree_dump_int_block(fs, ino, inode, rootnode,
Theodore Ts'o621732c2002-07-18 22:19:51 -0400149 e.block, buf, level-1);
Theodore Ts'odf614db2002-02-25 04:28:45 -0500150 else
Theodore Ts'o3e699062002-10-13 23:56:28 -0400151 htree_dump_leaf_node(fs, ino, inode, rootnode,
Theodore Ts'o621732c2002-07-18 22:19:51 -0400152 e.block, buf);
Theodore Ts'odf614db2002-02-25 04:28:45 -0500153 }
154
155 fprintf(pager, "---------------------\n");
156}
157
158static void htree_dump_int_block(ext2_filsys fs, ext2_ino_t ino,
159 struct ext2_inode *inode,
Theodore Ts'o3e699062002-10-13 23:56:28 -0400160 struct ext2_dx_root_info * rootnode,
Valerie Aurora Henson048786d2009-09-07 22:46:17 -0400161 blk64_t blk, char *buf, int level)
Theodore Ts'odf614db2002-02-25 04:28:45 -0500162{
163 char *cbuf;
164 errcode_t errcode;
Valerie Aurora Henson048786d2009-09-07 22:46:17 -0400165 blk64_t pblk;
Theodore Ts'odf614db2002-02-25 04:28:45 -0500166
167 cbuf = malloc(fs->blocksize);
168 if (!cbuf) {
169 fprintf(pager, "Couldn't allocate child block.\n");
170 return;
171 }
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400172
Valerie Aurora Henson048786d2009-09-07 22:46:17 -0400173 errcode = ext2fs_bmap2(fs, ino, inode, buf, 0, blk, 0, &pblk);
Theodore Ts'odf614db2002-02-25 04:28:45 -0500174 if (errcode) {
175 com_err("htree_dump_int_block", errcode,
Valerie Aurora Henson048786d2009-09-07 22:46:17 -0400176 "while mapping logical block %llu\n", blk);
Brian Behlendorf89456552007-03-21 17:53:33 -0400177 goto errout;
Theodore Ts'odf614db2002-02-25 04:28:45 -0500178 }
179
Valerie Aurora Henson24a117a2009-09-07 21:14:24 -0400180 errcode = io_channel_read_blk64(current_fs->io, pblk, 1, buf);
Theodore Ts'odf614db2002-02-25 04:28:45 -0500181 if (errcode) {
182 com_err("htree_dump_int_block", errcode,
Valerie Aurora Henson048786d2009-09-07 22:46:17 -0400183 "while reading block %llu\n", blk);
Brian Behlendorf89456552007-03-21 17:53:33 -0400184 goto errout;
Theodore Ts'odf614db2002-02-25 04:28:45 -0500185 }
186
Theodore Ts'o3e699062002-10-13 23:56:28 -0400187 htree_dump_int_node(fs, ino, inode, rootnode,
Theodore Ts'o503f9e72002-06-26 16:52:10 -0400188 (struct ext2_dx_entry *) (buf+8),
Theodore Ts'odf614db2002-02-25 04:28:45 -0500189 cbuf, level);
Brian Behlendorf89456552007-03-21 17:53:33 -0400190errout:
Theodore Ts'odf614db2002-02-25 04:28:45 -0500191 free(cbuf);
192}
193
194
195
196void do_htree_dump(int argc, char *argv[])
197{
198 ext2_ino_t ino;
199 struct ext2_inode inode;
Valerie Aurora Henson048786d2009-09-07 22:46:17 -0400200 blk64_t blk;
Theodore Ts'o3e699062002-10-13 23:56:28 -0400201 char *buf = NULL;
202 struct ext2_dx_root_info *rootnode;
Theodore Ts'odf614db2002-02-25 04:28:45 -0500203 struct ext2_dx_entry *ent;
Theodore Ts'odf614db2002-02-25 04:28:45 -0500204 errcode_t errcode;
205
206 if (check_fs_open(argv[0]))
207 return;
208
209 pager = open_pager();
210
Eric Sandeen1ec5d102011-05-11 11:46:19 -0500211 if (common_inode_args_process(argc, argv, &ino, 0))
Theodore Ts'o155f5772002-07-21 14:17:45 -0400212 goto errout;
Theodore Ts'odf614db2002-02-25 04:28:45 -0500213
214 if (debugfs_read_inode(ino, &inode, argv[1]))
Theodore Ts'o155f5772002-07-21 14:17:45 -0400215 goto errout;
Theodore Ts'odf614db2002-02-25 04:28:45 -0500216
217 if (!LINUX_S_ISDIR(inode.i_mode)) {
218 com_err(argv[0], 0, "Not a directory");
Theodore Ts'o155f5772002-07-21 14:17:45 -0400219 goto errout;
Theodore Ts'odf614db2002-02-25 04:28:45 -0500220 }
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400221
Theodore Ts'odf614db2002-02-25 04:28:45 -0500222 if ((inode.i_flags & EXT2_BTREE_FL) == 0) {
223 com_err(argv[0], 0, "Not a hash-indexed directory");
Theodore Ts'o155f5772002-07-21 14:17:45 -0400224 goto errout;
Theodore Ts'odf614db2002-02-25 04:28:45 -0500225 }
226
227 buf = malloc(2*current_fs->blocksize);
228 if (!buf) {
229 com_err(argv[0], 0, "Couldn't allocate htree buffer");
Theodore Ts'o155f5772002-07-21 14:17:45 -0400230 goto errout;
Theodore Ts'odf614db2002-02-25 04:28:45 -0500231 }
232
Valerie Aurora Henson048786d2009-09-07 22:46:17 -0400233 errcode = ext2fs_bmap2(current_fs, ino, &inode, buf, 0, 0, 0, &blk);
Theodore Ts'o226515d2008-08-08 11:56:07 -0400234 if (errcode) {
235 com_err("do_htree_block", errcode,
236 "while mapping logical block 0\n");
237 goto errout;
238 }
239
Valerie Aurora Henson24a117a2009-09-07 21:14:24 -0400240 errcode = io_channel_read_blk64(current_fs->io, blk,
241 1, buf);
Theodore Ts'odf614db2002-02-25 04:28:45 -0500242 if (errcode) {
243 com_err(argv[0], errcode, "Error reading root node");
244 goto errout;
245 }
246
Theodore Ts'o3e699062002-10-13 23:56:28 -0400247 rootnode = (struct ext2_dx_root_info *) (buf + 24);
Theodore Ts'odf614db2002-02-25 04:28:45 -0500248
249 fprintf(pager, "Root node dump:\n");
Takashi Sato8deb80a2006-03-18 21:43:46 -0500250 fprintf(pager, "\t Reserved zero: %u\n", rootnode->reserved_zero);
Theodore Ts'o3e699062002-10-13 23:56:28 -0400251 fprintf(pager, "\t Hash Version: %d\n", rootnode->hash_version);
252 fprintf(pager, "\t Info length: %d\n", rootnode->info_length);
253 fprintf(pager, "\t Indirect levels: %d\n", rootnode->indirect_levels);
254 fprintf(pager, "\t Flags: %d\n", rootnode->unused_flags);
Theodore Ts'odf614db2002-02-25 04:28:45 -0500255
Theodore Ts'o3e699062002-10-13 23:56:28 -0400256 ent = (struct ext2_dx_entry *) (buf + 24 + rootnode->info_length);
Theodore Ts'odf614db2002-02-25 04:28:45 -0500257
Theodore Ts'o3e699062002-10-13 23:56:28 -0400258 htree_dump_int_node(current_fs, ino, &inode, rootnode, ent,
Theodore Ts'odf614db2002-02-25 04:28:45 -0500259 buf + current_fs->blocksize,
Theodore Ts'o3e699062002-10-13 23:56:28 -0400260 rootnode->indirect_levels);
Theodore Ts'odf614db2002-02-25 04:28:45 -0500261
262errout:
Jim Meyering45e338f2009-02-23 18:07:50 +0100263 free(buf);
Theodore Ts'odf614db2002-02-25 04:28:45 -0500264 close_pager(pager);
265}
266
267/*
268 * This function prints the hash of a given file.
269 */
270void do_dx_hash(int argc, char *argv[])
271{
Theodore Ts'o503f9e72002-06-26 16:52:10 -0400272 ext2_dirhash_t hash, minor_hash;
Theodore Ts'o52783e02002-03-11 15:04:45 -0500273 errcode_t err;
Theodore Ts'o503f9e72002-06-26 16:52:10 -0400274 int c;
275 int hash_version = 0;
276 __u32 hash_seed[4];
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400277
Theodore Ts'o503f9e72002-06-26 16:52:10 -0400278 hash_seed[0] = hash_seed[1] = hash_seed[2] = hash_seed[3] = 0;
Theodore Ts'o88494bb2003-05-13 23:03:43 -0400279
280 reset_getopt();
Theodore Ts'of8bd5512008-09-10 11:30:46 -0400281 while ((c = getopt (argc, argv, "h:s:")) != EOF) {
Theodore Ts'o503f9e72002-06-26 16:52:10 -0400282 switch (c) {
283 case 'h':
Theodore Ts'of8bd5512008-09-10 11:30:46 -0400284 hash_version = e2p_string2hash(optarg);
285 if (hash_version < 0)
286 hash_version = atoi(optarg);
287 break;
288 case 's':
Theodore Ts'o42080a82009-07-11 23:23:16 -0400289 if (uuid_parse(optarg, (unsigned char *) hash_seed)) {
Theodore Ts'of8bd5512008-09-10 11:30:46 -0400290 fprintf(stderr, "Invalid UUID format: %s\n",
291 optarg);
292 return;
293 }
Theodore Ts'o503f9e72002-06-26 16:52:10 -0400294 break;
Theodore Ts'o49c6b4e2006-04-27 20:59:42 -0400295 default:
296 goto print_usage;
Theodore Ts'o503f9e72002-06-26 16:52:10 -0400297 }
298 }
299 if (optind != argc-1) {
Theodore Ts'o49c6b4e2006-04-27 20:59:42 -0400300 print_usage:
Theodore Ts'of8bd5512008-09-10 11:30:46 -0400301 com_err(argv[0], 0, "usage: dx_hash [-h hash_alg] "
302 "[-s hash_seed] filename");
Theodore Ts'odf614db2002-02-25 04:28:45 -0500303 return;
304 }
Theodore Ts'o503f9e72002-06-26 16:52:10 -0400305 err = ext2fs_dirhash(hash_version, argv[optind], strlen(argv[optind]),
306 hash_seed, &hash, &minor_hash);
Theodore Ts'o52783e02002-03-11 15:04:45 -0500307 if (err) {
308 com_err(argv[0], err, "while caclulating hash");
309 return;
310 }
Theodore Ts'o503f9e72002-06-26 16:52:10 -0400311 printf("Hash of %s is 0x%0x (minor 0x%0x)\n", argv[optind],
312 hash, minor_hash);
Theodore Ts'odf614db2002-02-25 04:28:45 -0500313}
314
315/*
316 * Search for particular directory entry (useful for debugging very
317 * large hash tree directories that have lost some blocks from the
318 * btree index).
319 */
320struct process_block_struct {
321 char *search_name;
322 char *buf;
323 int len;
324};
325
Valerie Aurora Henson048786d2009-09-07 22:46:17 -0400326static int search_dir_block(ext2_filsys fs, blk64_t *blocknr,
327 e2_blkcnt_t blockcnt, blk64_t ref_blk,
Theodore Ts'odf614db2002-02-25 04:28:45 -0500328 int ref_offset, void *priv_data);
329
330void do_dirsearch(int argc, char *argv[])
331{
332 ext2_ino_t inode;
Theodore Ts'odf614db2002-02-25 04:28:45 -0500333 struct process_block_struct pb;
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400334
Theodore Ts'odf614db2002-02-25 04:28:45 -0500335 if (check_fs_open(argv[0]))
336 return;
337
338 if (argc != 3) {
339 com_err(0, 0, "Usage: dirsearch dir filename");
340 return;
341 }
342
343 inode = string_to_inode(argv[1]);
344 if (!inode)
345 return;
346
347 pb.buf = malloc(current_fs->blocksize);
348 if (!pb.buf) {
349 com_err("dirsearch", 0, "Couldn't allocate buffer");
350 return;
351 }
352 pb.search_name = argv[2];
353 pb.len = strlen(pb.search_name);
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400354
Valerie Aurora Henson048786d2009-09-07 22:46:17 -0400355 ext2fs_block_iterate3(current_fs, inode, BLOCK_FLAG_READ_ONLY, 0,
Theodore Ts'o43323be2008-02-07 14:37:17 -0500356 search_dir_block, &pb);
Theodore Ts'odf614db2002-02-25 04:28:45 -0500357
358 free(pb.buf);
359}
360
361
Valerie Aurora Henson048786d2009-09-07 22:46:17 -0400362static int search_dir_block(ext2_filsys fs, blk64_t *blocknr,
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400363 e2_blkcnt_t blockcnt,
Valerie Aurora Henson048786d2009-09-07 22:46:17 -0400364 blk64_t ref_blk EXT2FS_ATTR((unused)),
Theodore Ts'o54434922003-12-07 01:28:50 -0500365 int ref_offset EXT2FS_ATTR((unused)),
366 void *priv_data)
Theodore Ts'odf614db2002-02-25 04:28:45 -0500367{
368 struct process_block_struct *p;
369 struct ext2_dir_entry *dirent;
370 errcode_t errcode;
Theodore Ts'o54434922003-12-07 01:28:50 -0500371 unsigned int offset = 0;
Theodore Ts'o8a480352009-06-21 21:07:38 -0400372 unsigned int rec_len;
Theodore Ts'odf614db2002-02-25 04:28:45 -0500373
374 if (blockcnt < 0)
375 return 0;
376
377 p = (struct process_block_struct *) priv_data;
378
Valerie Aurora Henson24a117a2009-09-07 21:14:24 -0400379 errcode = io_channel_read_blk64(current_fs->io, *blocknr, 1, p->buf);
Theodore Ts'odf614db2002-02-25 04:28:45 -0500380 if (errcode) {
381 com_err("search_dir_block", errcode,
Theodore Ts'o54434922003-12-07 01:28:50 -0500382 "while reading block %lu", (unsigned long) *blocknr);
Theodore Ts'odf614db2002-02-25 04:28:45 -0500383 return BLOCK_ABORT;
384 }
385
386 while (offset < fs->blocksize) {
387 dirent = (struct ext2_dir_entry *) (p->buf + offset);
Theodore Ts'o8a480352009-06-21 21:07:38 -0400388 errcode = ext2fs_get_rec_len(fs, dirent, &rec_len);
389 if (errcode) {
390 com_err("htree_dump_leaf_inode", errcode,
391 "while getting rec_len for block %lu",
392 (unsigned long) *blocknr);
Theodore Ts'o42080a82009-07-11 23:23:16 -0400393 return BLOCK_ABORT;
Theodore Ts'o8a480352009-06-21 21:07:38 -0400394 }
Theodore Ts'odf614db2002-02-25 04:28:45 -0500395 if (dirent->inode &&
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400396 p->len == (dirent->name_len & 0xFF) &&
Theodore Ts'odf614db2002-02-25 04:28:45 -0500397 strncmp(p->search_name, dirent->name,
398 p->len) == 0) {
399 printf("Entry found at logical block %lld, "
Valerie Aurora Henson048786d2009-09-07 22:46:17 -0400400 "phys %llu, offset %u\n", (long long)blockcnt,
Theodore Ts'odf614db2002-02-25 04:28:45 -0500401 *blocknr, offset);
Takashi Sato8deb80a2006-03-18 21:43:46 -0500402 printf("offset %u\n", offset);
Theodore Ts'odf614db2002-02-25 04:28:45 -0500403 return BLOCK_ABORT;
404 }
Theodore Ts'o5dd77db2008-08-25 21:08:19 -0400405 offset += rec_len;
Theodore Ts'odf614db2002-02-25 04:28:45 -0500406 }
407 return 0;
408}
409