]> git.ipfire.org Git - thirdparty/e2fsprogs.git/blob - debugfs/htree.c
Shorten compile commands run by the build system
[thirdparty/e2fsprogs.git] / debugfs / htree.c
1 /*
2 * htree.c --- hash tree routines
3 *
4 * Copyright (C) 2002 Theodore Ts'o. This file may be redistributed
5 * under the terms of the GNU Public License.
6 */
7
8 #include "config.h"
9 #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>
21 #else
22 extern int optind;
23 extern char *optarg;
24 #endif
25
26 #include "debugfs.h"
27 #include "uuid/uuid.h"
28 #include "e2p/e2p.h"
29
30 static FILE *pager;
31
32 static void htree_dump_leaf_node(ext2_filsys fs, ext2_ino_t ino,
33 struct ext2_inode *inode,
34 struct ext2_dx_root_info * rootnode,
35 blk64_t blk, char *buf)
36 {
37 errcode_t errcode;
38 struct ext2_dir_entry *dirent;
39 int thislen, col = 0;
40 unsigned int offset = 0;
41 char name[EXT2_NAME_LEN + 1];
42 char tmp[EXT2_NAME_LEN + 16];
43 blk64_t pblk;
44 ext2_dirhash_t hash, minor_hash;
45 unsigned int rec_len;
46 int hash_alg;
47
48 errcode = ext2fs_bmap2(fs, ino, inode, buf, 0, blk, 0, &pblk);
49 if (errcode) {
50 com_err("htree_dump_leaf_node", errcode,
51 "while mapping logical block %llu\n", blk);
52 return;
53 }
54
55 printf("Reading directory block %llu, phys %llu\n", blk, pblk);
56 errcode = ext2fs_read_dir_block2(current_fs, pblk, buf, 0);
57 if (errcode) {
58 com_err("htree_dump_leaf_node", errcode,
59 "while reading block %llu (%llu)\n",
60 blk, pblk);
61 return;
62 }
63 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;
67
68 while (offset < fs->blocksize) {
69 dirent = (struct ext2_dir_entry *) (buf + offset);
70 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 }
77 if (((offset + rec_len) > fs->blocksize) ||
78 (rec_len < 8) ||
79 ((rec_len % 4) != 0) ||
80 ((((unsigned) dirent->name_len & 0xFF)+8) > rec_len)) {
81 fprintf(pager, "Corrupted directory block (%llu)!\n",
82 blk);
83 break;
84 }
85 thislen = dirent->name_len & 0xFF;
86 strncpy(name, dirent->name, thislen);
87 name[thislen] = '\0';
88 errcode = ext2fs_dirhash(hash_alg, name,
89 thislen, fs->super->s_hash_seed,
90 &hash, &minor_hash);
91 if (errcode)
92 com_err("htree_dump_leaf_node", errcode,
93 "while calculating hash");
94 sprintf(tmp, "%u 0x%08x-%08x (%d) %s ", dirent->inode,
95 hash, minor_hash, rec_len, name);
96 thislen = strlen(tmp);
97 if (col + thislen > 80) {
98 fprintf(pager, "\n");
99 col = 0;
100 }
101 fprintf(pager, "%s", tmp);
102 col += thislen;
103 offset += rec_len;
104 }
105 fprintf(pager, "\n");
106 }
107
108
109 static void htree_dump_int_block(ext2_filsys fs, ext2_ino_t ino,
110 struct ext2_inode *inode,
111 struct ext2_dx_root_info * rootnode,
112 blk64_t blk, char *buf, int level);
113
114
115 static void htree_dump_int_node(ext2_filsys fs, ext2_ino_t ino,
116 struct ext2_inode *inode,
117 struct ext2_dx_root_info * rootnode,
118 struct ext2_dx_entry *ent,
119 char *buf, int level)
120 {
121 struct ext2_dx_countlimit limit;
122 struct ext2_dx_entry e;
123 int hash, i;
124
125
126 limit = *((struct ext2_dx_countlimit *) ent);
127 limit.count = ext2fs_le16_to_cpu(limit.count);
128 limit.limit = ext2fs_le16_to_cpu(limit.limit);
129
130 fprintf(pager, "Number of entries (count): %d\n", limit.count);
131 fprintf(pager, "Number of entries (limit): %d\n", limit.limit);
132
133 for (i=0; i < limit.count; i++) {
134 hash = i ? ext2fs_le32_to_cpu(ent[i].hash) : 0;
135 fprintf(pager, "Entry #%d: Hash 0x%08x%s, block %u\n", i,
136 hash, (hash & 1) ? " (**)" : "",
137 ext2fs_le32_to_cpu(ent[i].block));
138 }
139
140 fprintf(pager, "\n");
141
142 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);
145 fprintf(pager, "Entry #%d: Hash 0x%08x, block %u\n", i,
146 i ? e.hash : 0, e.block);
147 if (level)
148 htree_dump_int_block(fs, ino, inode, rootnode,
149 e.block, buf, level-1);
150 else
151 htree_dump_leaf_node(fs, ino, inode, rootnode,
152 e.block, buf);
153 }
154
155 fprintf(pager, "---------------------\n");
156 }
157
158 static void htree_dump_int_block(ext2_filsys fs, ext2_ino_t ino,
159 struct ext2_inode *inode,
160 struct ext2_dx_root_info * rootnode,
161 blk64_t blk, char *buf, int level)
162 {
163 char *cbuf;
164 errcode_t errcode;
165 blk64_t pblk;
166
167 cbuf = malloc(fs->blocksize);
168 if (!cbuf) {
169 fprintf(pager, "Couldn't allocate child block.\n");
170 return;
171 }
172
173 errcode = ext2fs_bmap2(fs, ino, inode, buf, 0, blk, 0, &pblk);
174 if (errcode) {
175 com_err("htree_dump_int_block", errcode,
176 "while mapping logical block %llu\n", blk);
177 goto errout;
178 }
179
180 errcode = io_channel_read_blk64(current_fs->io, pblk, 1, buf);
181 if (errcode) {
182 com_err("htree_dump_int_block", errcode,
183 "while reading block %llu\n", blk);
184 goto errout;
185 }
186
187 htree_dump_int_node(fs, ino, inode, rootnode,
188 (struct ext2_dx_entry *) (buf+8),
189 cbuf, level);
190 errout:
191 free(cbuf);
192 }
193
194
195
196 void do_htree_dump(int argc, char *argv[])
197 {
198 ext2_ino_t ino;
199 struct ext2_inode inode;
200 blk64_t blk;
201 char *buf = NULL;
202 struct ext2_dx_root_info *rootnode;
203 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
212 if (common_inode_args_process(argc, argv, &ino, 0))
213 goto errout;
214
215 if (debugfs_read_inode(ino, &inode, argv[1]))
216 goto errout;
217
218 if (!LINUX_S_ISDIR(inode.i_mode)) {
219 com_err(argv[0], 0, "Not a directory");
220 goto errout;
221 }
222
223 if ((inode.i_flags & EXT2_BTREE_FL) == 0) {
224 com_err(argv[0], 0, "Not a hash-indexed directory");
225 goto errout;
226 }
227
228 buf = malloc(2*current_fs->blocksize);
229 if (!buf) {
230 com_err(argv[0], 0, "Couldn't allocate htree buffer");
231 goto errout;
232 }
233
234 errcode = ext2fs_bmap2(current_fs, ino, &inode, buf, 0, 0, 0, &blk);
235 if (errcode) {
236 com_err("do_htree_block", errcode,
237 "while mapping logical block 0\n");
238 goto errout;
239 }
240
241 errcode = io_channel_read_blk64(current_fs->io, blk,
242 1, buf);
243 if (errcode) {
244 com_err(argv[0], errcode, "Error reading root node");
245 goto errout;
246 }
247
248 rootnode = (struct ext2_dx_root_info *) (buf + 24);
249
250 fprintf(pager, "Root node dump:\n");
251 fprintf(pager, "\t Reserved zero: %u\n", rootnode->reserved_zero);
252 fprintf(pager, "\t Hash Version: %d\n", rootnode->hash_version);
253 fprintf(pager, "\t Info length: %d\n", rootnode->info_length);
254 fprintf(pager, "\t Indirect levels: %d\n", rootnode->indirect_levels);
255 fprintf(pager, "\t Flags: %d\n", rootnode->unused_flags);
256
257 ent = (struct ext2_dx_entry *) (buf + 24 + rootnode->info_length);
258 limit = (struct ext2_dx_countlimit *) ent;
259
260 htree_dump_int_node(current_fs, ino, &inode, rootnode, ent,
261 buf + current_fs->blocksize,
262 rootnode->indirect_levels);
263
264 errout:
265 free(buf);
266 close_pager(pager);
267 }
268
269 /*
270 * This function prints the hash of a given file.
271 */
272 void do_dx_hash(int argc, char *argv[])
273 {
274 ext2_dirhash_t hash, minor_hash;
275 errcode_t err;
276 int c;
277 int hash_version = 0;
278 __u32 hash_seed[4];
279
280 hash_seed[0] = hash_seed[1] = hash_seed[2] = hash_seed[3] = 0;
281
282 reset_getopt();
283 while ((c = getopt (argc, argv, "h:s:")) != EOF) {
284 switch (c) {
285 case 'h':
286 hash_version = e2p_string2hash(optarg);
287 if (hash_version < 0)
288 hash_version = atoi(optarg);
289 break;
290 case 's':
291 if (uuid_parse(optarg, (unsigned char *) hash_seed)) {
292 fprintf(stderr, "Invalid UUID format: %s\n",
293 optarg);
294 return;
295 }
296 break;
297 default:
298 goto print_usage;
299 }
300 }
301 if (optind != argc-1) {
302 print_usage:
303 com_err(argv[0], 0, "usage: dx_hash [-h hash_alg] "
304 "[-s hash_seed] filename");
305 return;
306 }
307 err = ext2fs_dirhash(hash_version, argv[optind], strlen(argv[optind]),
308 hash_seed, &hash, &minor_hash);
309 if (err) {
310 com_err(argv[0], err, "while caclulating hash");
311 return;
312 }
313 printf("Hash of %s is 0x%0x (minor 0x%0x)\n", argv[optind],
314 hash, minor_hash);
315 }
316
317 /*
318 * Search for particular directory entry (useful for debugging very
319 * large hash tree directories that have lost some blocks from the
320 * btree index).
321 */
322 struct process_block_struct {
323 char *search_name;
324 char *buf;
325 int len;
326 };
327
328 static int search_dir_block(ext2_filsys fs, blk64_t *blocknr,
329 e2_blkcnt_t blockcnt, blk64_t ref_blk,
330 int ref_offset, void *priv_data);
331
332 void do_dirsearch(int argc, char *argv[])
333 {
334 ext2_ino_t inode;
335 struct process_block_struct pb;
336
337 if (check_fs_open(argv[0]))
338 return;
339
340 if (argc != 3) {
341 com_err(0, 0, "Usage: dirsearch dir filename");
342 return;
343 }
344
345 inode = string_to_inode(argv[1]);
346 if (!inode)
347 return;
348
349 pb.buf = malloc(current_fs->blocksize);
350 if (!pb.buf) {
351 com_err("dirsearch", 0, "Couldn't allocate buffer");
352 return;
353 }
354 pb.search_name = argv[2];
355 pb.len = strlen(pb.search_name);
356
357 ext2fs_block_iterate3(current_fs, inode, BLOCK_FLAG_READ_ONLY, 0,
358 search_dir_block, &pb);
359
360 free(pb.buf);
361 }
362
363
364 static int search_dir_block(ext2_filsys fs, blk64_t *blocknr,
365 e2_blkcnt_t blockcnt,
366 blk64_t ref_blk EXT2FS_ATTR((unused)),
367 int ref_offset EXT2FS_ATTR((unused)),
368 void *priv_data)
369 {
370 struct process_block_struct *p;
371 struct ext2_dir_entry *dirent;
372 errcode_t errcode;
373 unsigned int offset = 0;
374 unsigned int rec_len;
375
376 if (blockcnt < 0)
377 return 0;
378
379 p = (struct process_block_struct *) priv_data;
380
381 errcode = io_channel_read_blk64(current_fs->io, *blocknr, 1, p->buf);
382 if (errcode) {
383 com_err("search_dir_block", errcode,
384 "while reading block %lu", (unsigned long) *blocknr);
385 return BLOCK_ABORT;
386 }
387
388 while (offset < fs->blocksize) {
389 dirent = (struct ext2_dir_entry *) (p->buf + offset);
390 errcode = ext2fs_get_rec_len(fs, dirent, &rec_len);
391 if (errcode) {
392 com_err("htree_dump_leaf_inode", errcode,
393 "while getting rec_len for block %lu",
394 (unsigned long) *blocknr);
395 return BLOCK_ABORT;
396 }
397 if (dirent->inode &&
398 p->len == (dirent->name_len & 0xFF) &&
399 strncmp(p->search_name, dirent->name,
400 p->len) == 0) {
401 printf("Entry found at logical block %lld, "
402 "phys %llu, offset %u\n", (long long)blockcnt,
403 *blocknr, offset);
404 printf("offset %u\n", offset);
405 return BLOCK_ABORT;
406 }
407 offset += rec_len;
408 }
409 return 0;
410 }
411