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