blob: 01e4ca52aae81f688cf81fd103e64d385681d9eb [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
8#include <stdio.h>
9#include <unistd.h>
10#include <stdlib.h>
11#include <ctype.h>
12#include <string.h>
13#include <time.h>
14#ifdef HAVE_ERRNO_H
15#include <errno.h>
16#endif
17#include <sys/types.h>
18#ifdef HAVE_GETOPT_H
19#include <getopt.h>
Theodore Ts'oefc6f622008-08-27 23:07:54 -040020#else
Theodore Ts'odf614db2002-02-25 04:28:45 -050021extern int optind;
22extern char *optarg;
23#endif
Theodore Ts'odf614db2002-02-25 04:28:45 -050024
25#include "debugfs.h"
26
27static FILE *pager;
28
Theodore Ts'odf614db2002-02-25 04:28:45 -050029static void htree_dump_leaf_node(ext2_filsys fs, ext2_ino_t ino,
30 struct ext2_inode *inode,
Theodore Ts'o3e699062002-10-13 23:56:28 -040031 struct ext2_dx_root_info * rootnode,
Theodore Ts'odf614db2002-02-25 04:28:45 -050032 blk_t blk, char *buf)
33{
34 errcode_t errcode;
35 struct ext2_dir_entry *dirent;
Theodore Ts'o54434922003-12-07 01:28:50 -050036 int thislen, col = 0;
37 unsigned int offset = 0;
Brian Behlendorfb7729002007-03-21 15:09:15 -040038 char name[EXT2_NAME_LEN + 1];
Theodore Ts'odf614db2002-02-25 04:28:45 -050039 char tmp[EXT2_NAME_LEN + 16];
40 blk_t pblk;
Theodore Ts'o226515d2008-08-08 11:56:07 -040041 ext2_dirhash_t hash, minor_hash;
Theodore Ts'o8a480352009-06-21 21:07:38 -040042 unsigned int rec_len;
43 int hash_alg;
Theodore Ts'oefc6f622008-08-27 23:07:54 -040044
Theodore Ts'odf614db2002-02-25 04:28:45 -050045 errcode = ext2fs_bmap(fs, ino, inode, buf, 0, blk, &pblk);
46 if (errcode) {
47 com_err("htree_dump_leaf_node", errcode,
Takashi Sato8deb80a2006-03-18 21:43:46 -050048 "while mapping logical block %u\n", blk);
Theodore Ts'odf614db2002-02-25 04:28:45 -050049 return;
50 }
51
Theodore Ts'o2af6fe02009-04-22 15:08:36 -040052 printf("Reading directory block %lu, phys %lu\n",
53 (unsigned long) blk, (unsigned long) pblk);
Theodore Ts'o8132d842002-10-02 22:07:17 -040054 errcode = ext2fs_read_dir_block2(current_fs, pblk, buf, 0);
Theodore Ts'odf614db2002-02-25 04:28:45 -050055 if (errcode) {
56 com_err("htree_dump_leaf_node", errcode,
Theodore Ts'o2af6fe02009-04-22 15:08:36 -040057 "while reading block %lu (%lu)\n",
58 (unsigned long) blk, (unsigned long) pblk);
Theodore Ts'odf614db2002-02-25 04:28:45 -050059 return;
60 }
Theodore Ts'of77704e2006-11-11 22:32:35 -050061 hash_alg = rootnode->hash_version;
62 if ((hash_alg <= EXT2_HASH_TEA) &&
63 (fs->super->s_flags & EXT2_FLAGS_UNSIGNED_HASH))
64 hash_alg += 3;
Theodore Ts'odf614db2002-02-25 04:28:45 -050065
66 while (offset < fs->blocksize) {
67 dirent = (struct ext2_dir_entry *) (buf + offset);
Theodore Ts'o8a480352009-06-21 21:07:38 -040068 errcode = ext2fs_get_rec_len(fs, dirent, &rec_len);
69 if (errcode) {
70 com_err("htree_dump_leaf_inode", errcode,
71 "while getting rec_len for block %lu",
72 (unsigned long) blk);
73 return;
74 }
Theodore Ts'o5dd77db2008-08-25 21:08:19 -040075 if (((offset + rec_len) > fs->blocksize) ||
76 (rec_len < 8) ||
77 ((rec_len % 4) != 0) ||
78 (((dirent->name_len & 0xFF)+8) > rec_len)) {
Takashi Sato8deb80a2006-03-18 21:43:46 -050079 fprintf(pager, "Corrupted directory block (%u)!\n", blk);
Theodore Ts'odf614db2002-02-25 04:28:45 -050080 break;
81 }
82 thislen = ((dirent->name_len & 0xFF) < EXT2_NAME_LEN) ?
83 (dirent->name_len & 0xFF) : EXT2_NAME_LEN;
84 strncpy(name, dirent->name, thislen);
85 name[thislen] = '\0';
Theodore Ts'of77704e2006-11-11 22:32:35 -050086 errcode = ext2fs_dirhash(hash_alg, name,
Theodore Ts'o3e699062002-10-13 23:56:28 -040087 thislen, fs->super->s_hash_seed,
Theodore Ts'o226515d2008-08-08 11:56:07 -040088 &hash, &minor_hash);
Theodore Ts'o52783e02002-03-11 15:04:45 -050089 if (errcode)
90 com_err("htree_dump_leaf_node", errcode,
91 "while calculating hash");
Theodore Ts'o226515d2008-08-08 11:56:07 -040092 sprintf(tmp, "%u 0x%08x-%08x (%d) %s ", dirent->inode,
Theodore Ts'o5dd77db2008-08-25 21:08:19 -040093 hash, minor_hash, rec_len, name);
Theodore Ts'odf614db2002-02-25 04:28:45 -050094 thislen = strlen(tmp);
95 if (col + thislen > 80) {
96 fprintf(pager, "\n");
97 col = 0;
98 }
99 fprintf(pager, "%s", tmp);
100 col += thislen;
Theodore Ts'o5dd77db2008-08-25 21:08:19 -0400101 offset += rec_len;
Theodore Ts'odf614db2002-02-25 04:28:45 -0500102 }
103 fprintf(pager, "\n");
104}
105
106
107static void htree_dump_int_block(ext2_filsys fs, ext2_ino_t ino,
108 struct ext2_inode *inode,
Theodore Ts'o3e699062002-10-13 23:56:28 -0400109 struct ext2_dx_root_info * rootnode,
Theodore Ts'odf614db2002-02-25 04:28:45 -0500110 blk_t blk, char *buf, int level);
111
112
113static void htree_dump_int_node(ext2_filsys fs, ext2_ino_t ino,
114 struct ext2_inode *inode,
Theodore Ts'o3e699062002-10-13 23:56:28 -0400115 struct ext2_dx_root_info * rootnode,
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400116 struct ext2_dx_entry *ent,
Theodore Ts'odf614db2002-02-25 04:28:45 -0500117 char *buf, int level)
118{
Theodore Ts'o621732c2002-07-18 22:19:51 -0400119 struct ext2_dx_countlimit limit;
120 struct ext2_dx_entry e;
Theodore Ts'o42e5b5f2002-09-22 15:27:28 -0400121 int hash, i;
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400122
Theodore Ts'odf614db2002-02-25 04:28:45 -0500123
Theodore Ts'o621732c2002-07-18 22:19:51 -0400124 limit = *((struct ext2_dx_countlimit *) ent);
125 limit.count = ext2fs_le16_to_cpu(limit.count);
126 limit.limit = ext2fs_le16_to_cpu(limit.limit);
Theodore Ts'odf614db2002-02-25 04:28:45 -0500127
Theodore Ts'o621732c2002-07-18 22:19:51 -0400128 fprintf(pager, "Number of entries (count): %d\n", limit.count);
129 fprintf(pager, "Number of entries (limit): %d\n", limit.limit);
Theodore Ts'odf614db2002-02-25 04:28:45 -0500130
Theodore Ts'o42e5b5f2002-09-22 15:27:28 -0400131 for (i=0; i < limit.count; i++) {
132 hash = i ? ext2fs_le32_to_cpu(ent[i].hash) : 0;
Eric Sandeend0ff90d2006-09-12 14:56:15 -0400133 fprintf(pager, "Entry #%d: Hash 0x%08x%s, block %u\n", i,
Theodore Ts'o42e5b5f2002-09-22 15:27:28 -0400134 hash, (hash & 1) ? " (**)" : "",
Theodore Ts'o621732c2002-07-18 22:19:51 -0400135 ext2fs_le32_to_cpu(ent[i].block));
Theodore Ts'o42e5b5f2002-09-22 15:27:28 -0400136 }
Theodore Ts'odf614db2002-02-25 04:28:45 -0500137
138 fprintf(pager, "\n");
139
Theodore Ts'o621732c2002-07-18 22:19:51 -0400140 for (i=0; i < limit.count; i++) {
141 e.hash = ext2fs_le32_to_cpu(ent[i].hash);
142 e.block = ext2fs_le32_to_cpu(ent[i].block);
Takashi Sato8deb80a2006-03-18 21:43:46 -0500143 fprintf(pager, "Entry #%d: Hash 0x%08x, block %u\n", i,
Theodore Ts'o621732c2002-07-18 22:19:51 -0400144 i ? e.hash : 0, e.block);
Theodore Ts'odf614db2002-02-25 04:28:45 -0500145 if (level)
Theodore Ts'o3e699062002-10-13 23:56:28 -0400146 htree_dump_int_block(fs, ino, inode, rootnode,
Theodore Ts'o621732c2002-07-18 22:19:51 -0400147 e.block, buf, level-1);
Theodore Ts'odf614db2002-02-25 04:28:45 -0500148 else
Theodore Ts'o3e699062002-10-13 23:56:28 -0400149 htree_dump_leaf_node(fs, ino, inode, rootnode,
Theodore Ts'o621732c2002-07-18 22:19:51 -0400150 e.block, buf);
Theodore Ts'odf614db2002-02-25 04:28:45 -0500151 }
152
153 fprintf(pager, "---------------------\n");
154}
155
156static void htree_dump_int_block(ext2_filsys fs, ext2_ino_t ino,
157 struct ext2_inode *inode,
Theodore Ts'o3e699062002-10-13 23:56:28 -0400158 struct ext2_dx_root_info * rootnode,
Theodore Ts'odf614db2002-02-25 04:28:45 -0500159 blk_t blk, char *buf, int level)
160{
161 char *cbuf;
162 errcode_t errcode;
163 blk_t pblk;
164
165 cbuf = malloc(fs->blocksize);
166 if (!cbuf) {
167 fprintf(pager, "Couldn't allocate child block.\n");
168 return;
169 }
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400170
Theodore Ts'odf614db2002-02-25 04:28:45 -0500171 errcode = ext2fs_bmap(fs, ino, inode, buf, 0, blk, &pblk);
172 if (errcode) {
173 com_err("htree_dump_int_block", errcode,
Takashi Sato8deb80a2006-03-18 21:43:46 -0500174 "while mapping logical block %u\n", blk);
Brian Behlendorf89456552007-03-21 17:53:33 -0400175 goto errout;
Theodore Ts'odf614db2002-02-25 04:28:45 -0500176 }
177
178 errcode = io_channel_read_blk(current_fs->io, pblk, 1, buf);
179 if (errcode) {
180 com_err("htree_dump_int_block", errcode,
Takashi Sato8deb80a2006-03-18 21:43:46 -0500181 "while reading block %u\n", blk);
Brian Behlendorf89456552007-03-21 17:53:33 -0400182 goto errout;
Theodore Ts'odf614db2002-02-25 04:28:45 -0500183 }
184
Theodore Ts'o3e699062002-10-13 23:56:28 -0400185 htree_dump_int_node(fs, ino, inode, rootnode,
Theodore Ts'o503f9e72002-06-26 16:52:10 -0400186 (struct ext2_dx_entry *) (buf+8),
Theodore Ts'odf614db2002-02-25 04:28:45 -0500187 cbuf, level);
Brian Behlendorf89456552007-03-21 17:53:33 -0400188errout:
Theodore Ts'odf614db2002-02-25 04:28:45 -0500189 free(cbuf);
190}
191
192
193
194void do_htree_dump(int argc, char *argv[])
195{
196 ext2_ino_t ino;
197 struct ext2_inode inode;
Theodore Ts'o3e699062002-10-13 23:56:28 -0400198 int c;
Theodore Ts'od904dd22007-03-29 00:26:10 -0400199 int long_opt = 0;
Theodore Ts'o226515d2008-08-08 11:56:07 -0400200 blk_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;
204 struct ext2_dx_countlimit *limit;
205 errcode_t errcode;
206
207 if (check_fs_open(argv[0]))
208 return;
209
210 pager = open_pager();
211
Theodore Ts'o88494bb2003-05-13 23:03:43 -0400212 reset_getopt();
Theodore Ts'odf614db2002-02-25 04:28:45 -0500213 while ((c = getopt (argc, argv, "l")) != EOF) {
214 switch (c) {
215 case 'l':
216 long_opt++;
217 break;
Theodore Ts'o49c6b4e2006-04-27 20:59:42 -0400218 default:
219 goto print_usage;
Theodore Ts'odf614db2002-02-25 04:28:45 -0500220 }
221 }
222
223 if (argc > optind+1) {
Theodore Ts'o49c6b4e2006-04-27 20:59:42 -0400224 print_usage:
Theodore Ts'odf614db2002-02-25 04:28:45 -0500225 com_err(0, 0, "Usage: htree_dump [-l] file");
Theodore Ts'o155f5772002-07-21 14:17:45 -0400226 goto errout;
Theodore Ts'odf614db2002-02-25 04:28:45 -0500227 }
228
229 if (argc == optind)
230 ino = cwd;
231 else
232 ino = string_to_inode(argv[optind]);
233 if (!ino)
Theodore Ts'o155f5772002-07-21 14:17:45 -0400234 goto errout;
Theodore Ts'odf614db2002-02-25 04:28:45 -0500235
236 if (debugfs_read_inode(ino, &inode, argv[1]))
Theodore Ts'o155f5772002-07-21 14:17:45 -0400237 goto errout;
Theodore Ts'odf614db2002-02-25 04:28:45 -0500238
239 if (!LINUX_S_ISDIR(inode.i_mode)) {
240 com_err(argv[0], 0, "Not a directory");
Theodore Ts'o155f5772002-07-21 14:17:45 -0400241 goto errout;
Theodore Ts'odf614db2002-02-25 04:28:45 -0500242 }
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400243
Theodore Ts'odf614db2002-02-25 04:28:45 -0500244 if ((inode.i_flags & EXT2_BTREE_FL) == 0) {
245 com_err(argv[0], 0, "Not a hash-indexed directory");
Theodore Ts'o155f5772002-07-21 14:17:45 -0400246 goto errout;
Theodore Ts'odf614db2002-02-25 04:28:45 -0500247 }
248
249 buf = malloc(2*current_fs->blocksize);
250 if (!buf) {
251 com_err(argv[0], 0, "Couldn't allocate htree buffer");
Theodore Ts'o155f5772002-07-21 14:17:45 -0400252 goto errout;
Theodore Ts'odf614db2002-02-25 04:28:45 -0500253 }
254
Theodore Ts'o226515d2008-08-08 11:56:07 -0400255 errcode = ext2fs_bmap(current_fs, ino, &inode, buf, 0, 0, &blk);
256 if (errcode) {
257 com_err("do_htree_block", errcode,
258 "while mapping logical block 0\n");
259 goto errout;
260 }
261
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400262 errcode = io_channel_read_blk(current_fs->io, blk,
Theodore Ts'odf614db2002-02-25 04:28:45 -0500263 1, buf);
264 if (errcode) {
265 com_err(argv[0], errcode, "Error reading root node");
266 goto errout;
267 }
268
Theodore Ts'o3e699062002-10-13 23:56:28 -0400269 rootnode = (struct ext2_dx_root_info *) (buf + 24);
Theodore Ts'odf614db2002-02-25 04:28:45 -0500270
271 fprintf(pager, "Root node dump:\n");
Takashi Sato8deb80a2006-03-18 21:43:46 -0500272 fprintf(pager, "\t Reserved zero: %u\n", rootnode->reserved_zero);
Theodore Ts'o3e699062002-10-13 23:56:28 -0400273 fprintf(pager, "\t Hash Version: %d\n", rootnode->hash_version);
274 fprintf(pager, "\t Info length: %d\n", rootnode->info_length);
275 fprintf(pager, "\t Indirect levels: %d\n", rootnode->indirect_levels);
276 fprintf(pager, "\t Flags: %d\n", rootnode->unused_flags);
Theodore Ts'odf614db2002-02-25 04:28:45 -0500277
Theodore Ts'o3e699062002-10-13 23:56:28 -0400278 ent = (struct ext2_dx_entry *) (buf + 24 + rootnode->info_length);
Theodore Ts'odf614db2002-02-25 04:28:45 -0500279 limit = (struct ext2_dx_countlimit *) ent;
280
Theodore Ts'o3e699062002-10-13 23:56:28 -0400281 htree_dump_int_node(current_fs, ino, &inode, rootnode, ent,
Theodore Ts'odf614db2002-02-25 04:28:45 -0500282 buf + current_fs->blocksize,
Theodore Ts'o3e699062002-10-13 23:56:28 -0400283 rootnode->indirect_levels);
Theodore Ts'odf614db2002-02-25 04:28:45 -0500284
285errout:
Jim Meyering45e338f2009-02-23 18:07:50 +0100286 free(buf);
Theodore Ts'odf614db2002-02-25 04:28:45 -0500287 close_pager(pager);
288}
289
290/*
291 * This function prints the hash of a given file.
292 */
293void do_dx_hash(int argc, char *argv[])
294{
Theodore Ts'o503f9e72002-06-26 16:52:10 -0400295 ext2_dirhash_t hash, minor_hash;
Theodore Ts'o52783e02002-03-11 15:04:45 -0500296 errcode_t err;
Theodore Ts'o503f9e72002-06-26 16:52:10 -0400297 int c;
298 int hash_version = 0;
299 __u32 hash_seed[4];
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400300
Theodore Ts'o503f9e72002-06-26 16:52:10 -0400301 hash_seed[0] = hash_seed[1] = hash_seed[2] = hash_seed[3] = 0;
Theodore Ts'o88494bb2003-05-13 23:03:43 -0400302
303 reset_getopt();
Theodore Ts'of8bd5512008-09-10 11:30:46 -0400304 while ((c = getopt (argc, argv, "h:s:")) != EOF) {
Theodore Ts'o503f9e72002-06-26 16:52:10 -0400305 switch (c) {
306 case 'h':
Theodore Ts'of8bd5512008-09-10 11:30:46 -0400307 hash_version = e2p_string2hash(optarg);
308 if (hash_version < 0)
309 hash_version = atoi(optarg);
310 break;
311 case 's':
312 if (uuid_parse(optarg, hash_seed)) {
313 fprintf(stderr, "Invalid UUID format: %s\n",
314 optarg);
315 return;
316 }
Theodore Ts'o503f9e72002-06-26 16:52:10 -0400317 break;
Theodore Ts'o49c6b4e2006-04-27 20:59:42 -0400318 default:
319 goto print_usage;
Theodore Ts'o503f9e72002-06-26 16:52:10 -0400320 }
321 }
322 if (optind != argc-1) {
Theodore Ts'o49c6b4e2006-04-27 20:59:42 -0400323 print_usage:
Theodore Ts'of8bd5512008-09-10 11:30:46 -0400324 com_err(argv[0], 0, "usage: dx_hash [-h hash_alg] "
325 "[-s hash_seed] filename");
Theodore Ts'odf614db2002-02-25 04:28:45 -0500326 return;
327 }
Theodore Ts'o503f9e72002-06-26 16:52:10 -0400328 err = ext2fs_dirhash(hash_version, argv[optind], strlen(argv[optind]),
329 hash_seed, &hash, &minor_hash);
Theodore Ts'o52783e02002-03-11 15:04:45 -0500330 if (err) {
331 com_err(argv[0], err, "while caclulating hash");
332 return;
333 }
Theodore Ts'o503f9e72002-06-26 16:52:10 -0400334 printf("Hash of %s is 0x%0x (minor 0x%0x)\n", argv[optind],
335 hash, minor_hash);
Theodore Ts'odf614db2002-02-25 04:28:45 -0500336}
337
338/*
339 * Search for particular directory entry (useful for debugging very
340 * large hash tree directories that have lost some blocks from the
341 * btree index).
342 */
343struct process_block_struct {
344 char *search_name;
345 char *buf;
346 int len;
347};
348
349static int search_dir_block(ext2_filsys fs, blk_t *blocknr,
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400350 e2_blkcnt_t blockcnt, blk_t ref_blk,
Theodore Ts'odf614db2002-02-25 04:28:45 -0500351 int ref_offset, void *priv_data);
352
353void do_dirsearch(int argc, char *argv[])
354{
355 ext2_ino_t inode;
Theodore Ts'odf614db2002-02-25 04:28:45 -0500356 struct process_block_struct pb;
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400357
Theodore Ts'odf614db2002-02-25 04:28:45 -0500358 if (check_fs_open(argv[0]))
359 return;
360
361 if (argc != 3) {
362 com_err(0, 0, "Usage: dirsearch dir filename");
363 return;
364 }
365
366 inode = string_to_inode(argv[1]);
367 if (!inode)
368 return;
369
370 pb.buf = malloc(current_fs->blocksize);
371 if (!pb.buf) {
372 com_err("dirsearch", 0, "Couldn't allocate buffer");
373 return;
374 }
375 pb.search_name = argv[2];
376 pb.len = strlen(pb.search_name);
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400377
Theodore Ts'o43323be2008-02-07 14:37:17 -0500378 ext2fs_block_iterate2(current_fs, inode, BLOCK_FLAG_READ_ONLY, 0,
379 search_dir_block, &pb);
Theodore Ts'odf614db2002-02-25 04:28:45 -0500380
381 free(pb.buf);
382}
383
384
385static int search_dir_block(ext2_filsys fs, blk_t *blocknr,
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400386 e2_blkcnt_t blockcnt,
Theodore Ts'o54434922003-12-07 01:28:50 -0500387 blk_t ref_blk EXT2FS_ATTR((unused)),
388 int ref_offset EXT2FS_ATTR((unused)),
389 void *priv_data)
Theodore Ts'odf614db2002-02-25 04:28:45 -0500390{
391 struct process_block_struct *p;
392 struct ext2_dir_entry *dirent;
393 errcode_t errcode;
Theodore Ts'o54434922003-12-07 01:28:50 -0500394 unsigned int offset = 0;
Theodore Ts'o8a480352009-06-21 21:07:38 -0400395 unsigned int rec_len;
Theodore Ts'odf614db2002-02-25 04:28:45 -0500396
397 if (blockcnt < 0)
398 return 0;
399
400 p = (struct process_block_struct *) priv_data;
401
402 errcode = io_channel_read_blk(current_fs->io, *blocknr, 1, p->buf);
403 if (errcode) {
404 com_err("search_dir_block", errcode,
Theodore Ts'o54434922003-12-07 01:28:50 -0500405 "while reading block %lu", (unsigned long) *blocknr);
Theodore Ts'odf614db2002-02-25 04:28:45 -0500406 return BLOCK_ABORT;
407 }
408
409 while (offset < fs->blocksize) {
410 dirent = (struct ext2_dir_entry *) (p->buf + offset);
Theodore Ts'o8a480352009-06-21 21:07:38 -0400411 errcode = ext2fs_get_rec_len(fs, dirent, &rec_len);
412 if (errcode) {
413 com_err("htree_dump_leaf_inode", errcode,
414 "while getting rec_len for block %lu",
415 (unsigned long) *blocknr);
416 return;
417 }
Theodore Ts'odf614db2002-02-25 04:28:45 -0500418 if (dirent->inode &&
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400419 p->len == (dirent->name_len & 0xFF) &&
Theodore Ts'odf614db2002-02-25 04:28:45 -0500420 strncmp(p->search_name, dirent->name,
421 p->len) == 0) {
422 printf("Entry found at logical block %lld, "
Andreas Dilgerde8f3a72007-05-25 11:18:11 -0400423 "phys %u, offset %u\n", (long long)blockcnt,
Theodore Ts'odf614db2002-02-25 04:28:45 -0500424 *blocknr, offset);
Takashi Sato8deb80a2006-03-18 21:43:46 -0500425 printf("offset %u\n", offset);
Theodore Ts'odf614db2002-02-25 04:28:45 -0500426 return BLOCK_ABORT;
427 }
Theodore Ts'o5dd77db2008-08-25 21:08:19 -0400428 offset += rec_len;
Theodore Ts'odf614db2002-02-25 04:28:45 -0500429 }
430 return 0;
431}
432