blob: e5caac2da9517a4864b91e0e4f40dcc5af664907 [file] [log] [blame]
Theodore Ts'o3839e651997-04-26 13:21:57 +00001/*
2 * dumpe2fs.c - List the control structures of a second
3 * extended filesystem
4 *
5 * Copyright (C) 1992, 1993, 1994 Remy Card <card@masi.ibp.fr>
6 * Laboratoire MASI, Institut Blaise Pascal
7 * Universite Pierre et Marie Curie (Paris VI)
8 *
Theodore Ts'o19c78dc1997-04-29 16:17:09 +00009 * Copyright 1995, 1996, 1997 by Theodore Ts'o.
10 *
11 * %Begin-Header%
12 * This file may be redistributed under the terms of the GNU Public
13 * License.
14 * %End-Header%
Theodore Ts'o3839e651997-04-26 13:21:57 +000015 */
16
17/*
18 * History:
19 * 94/01/09 - Creation
20 * 94/02/27 - Ported to use the ext2fs library
21 */
22
Theodore Ts'oa418d3a1997-04-26 14:00:26 +000023#ifdef HAVE_GETOPT_H
Theodore Ts'o3839e651997-04-26 13:21:57 +000024#include <getopt.h>
Theodore Ts'o373b8332000-04-03 16:22:35 +000025#else
26extern char *optarg;
27extern int optind;
Theodore Ts'oa418d3a1997-04-26 14:00:26 +000028#endif
Theodore Ts'o3839e651997-04-26 13:21:57 +000029#include <fcntl.h>
30#include <stdio.h>
31#include <stdlib.h>
32#include <string.h>
33#include <unistd.h>
34
Theodore Ts'o54c637d2001-05-14 11:45:38 +000035#include "ext2fs/ext2_fs.h"
Theodore Ts'o3839e651997-04-26 13:21:57 +000036
37#include "ext2fs/ext2fs.h"
38#include "e2p/e2p.h"
Theodore Ts'o16ed5b32001-01-16 07:47:31 +000039#include "jfs_user.h"
Theodore Ts'o3839e651997-04-26 13:21:57 +000040
41#include "../version.h"
Theodore Ts'od9c56d32000-02-08 00:47:55 +000042#include "nls-enable.h"
Theodore Ts'o3839e651997-04-26 13:21:57 +000043
Theodore Ts'o74becf31997-04-26 14:37:06 +000044#define in_use(m, x) (ext2fs_test_bit ((x), (m)))
Theodore Ts'o3839e651997-04-26 13:21:57 +000045
46const char * program_name = "dumpe2fs";
47char * device_name = NULL;
Theodore Ts'o80c22c92000-08-14 15:32:11 +000048int opt_hex = 0;
Theodore Ts'o3839e651997-04-26 13:21:57 +000049
Theodore Ts'o818180c1998-06-27 05:11:14 +000050static void usage(void)
Theodore Ts'o3839e651997-04-26 13:21:57 +000051{
Theodore Ts'o348e43d2001-05-03 14:43:43 +000052 fprintf (stderr, _("Usage: %s [-bfhixV] [-ob superblock] "
Theodore Ts'od9c56d32000-02-08 00:47:55 +000053 "[-oB blocksize] device\n"), program_name);
Theodore Ts'o3839e651997-04-26 13:21:57 +000054 exit (1);
55}
56
57static void print_free (unsigned long group, char * bitmap,
58 unsigned long nbytes, unsigned long offset)
59{
60 int p = 0;
61 unsigned long i;
62 unsigned long j;
63
64 for (i = 0; i < nbytes; i++)
65 if (!in_use (bitmap, i))
66 {
67 if (p)
68 printf (", ");
69 if (i == nbytes - 1 || in_use (bitmap, i + 1))
Theodore Ts'o80c22c92000-08-14 15:32:11 +000070 printf (opt_hex ? "0x%04x" : "%lu",
71 group * nbytes + i + offset);
Theodore Ts'o3839e651997-04-26 13:21:57 +000072 else
73 {
74 for (j = i; j < nbytes && !in_use (bitmap, j);
75 j++)
76 ;
Theodore Ts'o80c22c92000-08-14 15:32:11 +000077 printf (opt_hex ? "0x%04lx-0x%04lx" :
78 "%lu-%lu", group * nbytes + i + offset,
Theodore Ts'o3839e651997-04-26 13:21:57 +000079 group * nbytes + (j - 1) + offset);
80 i = j - 1;
81 }
82 p = 1;
83 }
84}
85
86static void list_desc (ext2_filsys fs)
87{
88 unsigned long i;
Theodore Ts'o521e3681997-04-29 17:48:10 +000089 blk_t group_blk, next_blk;
Theodore Ts'of3db3561997-04-26 13:34:30 +000090 char * block_bitmap = fs->block_map->bitmap;
91 char * inode_bitmap = fs->inode_map->bitmap;
Theodore Ts'o80c22c92000-08-14 15:32:11 +000092 int inode_blocks_per_group;
93 int group_desc_blocks;
94
95 inode_blocks_per_group = ((fs->super->s_inodes_per_group *
96 EXT2_INODE_SIZE(fs->super)) +
97 EXT2_BLOCK_SIZE(fs->super) - 1) /
98 EXT2_BLOCK_SIZE(fs->super);
99 group_desc_blocks = ((fs->super->s_blocks_count -
100 fs->super->s_first_data_block +
101 EXT2_BLOCKS_PER_GROUP(fs->super) - 1) /
102 EXT2_BLOCKS_PER_GROUP(fs->super) +
103 EXT2_DESC_PER_BLOCK(fs->super) - 1) /
104 EXT2_DESC_PER_BLOCK(fs->super);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000105
106 printf ("\n");
Theodore Ts'o521e3681997-04-29 17:48:10 +0000107 group_blk = fs->super->s_first_data_block;
108 for (i = 0; i < fs->group_desc_count; i++) {
109 next_blk = group_blk + fs->super->s_blocks_per_group;
110 if (next_blk > fs->super->s_blocks_count)
111 next_blk = fs->super->s_blocks_count;
Theodore Ts'o8b164f92001-02-08 03:24:18 +0000112 printf (opt_hex ? _("Group %lu: (Blocks 0x%04x -- 0x%04x)\n"):
Theodore Ts'o80c22c92000-08-14 15:32:11 +0000113 _("Group %lu: (Blocks %u -- %u)\n"), i,
Theodore Ts'o521e3681997-04-29 17:48:10 +0000114 group_blk, next_blk -1 );
Theodore Ts'o80c22c92000-08-14 15:32:11 +0000115 if (ext2fs_bg_has_super (fs, i))
116 printf (opt_hex ? _(" %s Superblock at 0x%04x,"
117 " Group Descriptors at 0x%04x-0x%04x\n"):
118 _(" %s Superblock at %u,"
119 " Group Descriptors at %u-%u\n"),
120 i == 0 ? _("Primary") : _("Backup"),
121 group_blk, group_blk + 1,
122 group_blk + group_desc_blocks);
Theodore Ts'o8b164f92001-02-08 03:24:18 +0000123 printf (opt_hex ? _(" Block bitmap at 0x%04x (+%d), "
124 "Inode bitmap at 0x%04x (+%d)\n "
125 "Inode table at 0x%04x-0x%04x (+%d)\n"):
Theodore Ts'o80c22c92000-08-14 15:32:11 +0000126 _(" Block bitmap at %u (+%d), "
Theodore Ts'o521e3681997-04-29 17:48:10 +0000127 "Inode bitmap at %u (+%d)\n "
Theodore Ts'od7e39b02000-09-11 17:01:35 +0000128 "Inode table at %u-%u (+%d)\n"),
Theodore Ts'o3839e651997-04-26 13:21:57 +0000129 fs->group_desc[i].bg_block_bitmap,
Theodore Ts'o521e3681997-04-29 17:48:10 +0000130 fs->group_desc[i].bg_block_bitmap - group_blk,
Theodore Ts'o3839e651997-04-26 13:21:57 +0000131 fs->group_desc[i].bg_inode_bitmap,
Theodore Ts'o521e3681997-04-29 17:48:10 +0000132 fs->group_desc[i].bg_inode_bitmap - group_blk,
133 fs->group_desc[i].bg_inode_table,
Theodore Ts'o80c22c92000-08-14 15:32:11 +0000134 fs->group_desc[i].bg_inode_table +
Theodore Ts'o8b164f92001-02-08 03:24:18 +0000135 inode_blocks_per_group - 1,
Theodore Ts'o521e3681997-04-29 17:48:10 +0000136 fs->group_desc[i].bg_inode_table - group_blk);
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000137 printf (_(" %d free blocks, %d free inodes, %d directories\n"),
Theodore Ts'o3839e651997-04-26 13:21:57 +0000138 fs->group_desc[i].bg_free_blocks_count,
139 fs->group_desc[i].bg_free_inodes_count,
140 fs->group_desc[i].bg_used_dirs_count);
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000141 printf (_(" Free blocks: "));
Theodore Ts'o3839e651997-04-26 13:21:57 +0000142 print_free (i, block_bitmap, fs->super->s_blocks_per_group,
143 fs->super->s_first_data_block);
144 block_bitmap += fs->super->s_blocks_per_group / 8;
145 printf ("\n");
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000146 printf (_(" Free inodes: "));
Theodore Ts'o3839e651997-04-26 13:21:57 +0000147 print_free (i, inode_bitmap, fs->super->s_inodes_per_group, 1);
148 inode_bitmap += fs->super->s_inodes_per_group / 8;
149 printf ("\n");
Theodore Ts'o521e3681997-04-29 17:48:10 +0000150 group_blk = next_blk;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000151 }
152}
153
154static void list_bad_blocks(ext2_filsys fs)
155{
156 badblocks_list bb_list = 0;
157 badblocks_iterate bb_iter;
158 blk_t blk;
159 errcode_t retval;
160
161 retval = ext2fs_read_bb_inode(fs, &bb_list);
162 if (retval) {
163 com_err("ext2fs_read_bb_inode", retval, "");
164 exit(1);
165 }
Theodore Ts'ocbbf0312001-06-13 00:12:04 +0000166 retval = ext2fs_badblocks_list_iterate_begin(bb_list, &bb_iter);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000167 if (retval) {
Theodore Ts'ocbbf0312001-06-13 00:12:04 +0000168 com_err("ext2fs_badblocks_list_iterate_begin", retval,
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000169 _("while printing bad block list"));
Theodore Ts'o3839e651997-04-26 13:21:57 +0000170 exit(1);
171 }
Theodore Ts'ocbbf0312001-06-13 00:12:04 +0000172 if (ext2fs_badblocks_list_iterate(bb_iter, &blk))
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000173 printf(_("Bad blocks: %d"), blk);
Theodore Ts'ocbbf0312001-06-13 00:12:04 +0000174 while (ext2fs_badblocks_list_iterate(bb_iter, &blk))
Theodore Ts'oa418d3a1997-04-26 14:00:26 +0000175 printf(", %d", blk);
Theodore Ts'ocbbf0312001-06-13 00:12:04 +0000176 ext2fs_badblocks_list_iterate_end(bb_iter);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000177 printf("\n");
178}
179
Theodore Ts'of3db3561997-04-26 13:34:30 +0000180static void dump_bad_blocks(ext2_filsys fs)
181{
182 badblocks_list bb_list = 0;
183 badblocks_iterate bb_iter;
184 blk_t blk;
185 errcode_t retval;
186
187 retval = ext2fs_read_bb_inode(fs, &bb_list);
188 if (retval) {
189 com_err("ext2fs_read_bb_inode", retval, "");
190 exit(1);
191 }
Theodore Ts'ocbbf0312001-06-13 00:12:04 +0000192 retval = ext2fs_badblocks_list_iterate_begin(bb_list, &bb_iter);
Theodore Ts'of3db3561997-04-26 13:34:30 +0000193 if (retval) {
Theodore Ts'ocbbf0312001-06-13 00:12:04 +0000194 com_err("ext2fs_badblocks_list_iterate_begin", retval,
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000195 _("while printing bad block list"));
Theodore Ts'of3db3561997-04-26 13:34:30 +0000196 exit(1);
197 }
Theodore Ts'ocbbf0312001-06-13 00:12:04 +0000198 while (ext2fs_badblocks_list_iterate(bb_iter, &blk))
Theodore Ts'oa418d3a1997-04-26 14:00:26 +0000199 printf("%d\n", blk);
Theodore Ts'ocbbf0312001-06-13 00:12:04 +0000200 ext2fs_badblocks_list_iterate_end(bb_iter);
Theodore Ts'o1e3472c1997-04-29 14:53:37 +0000201}
Theodore Ts'of3db3561997-04-26 13:34:30 +0000202
Theodore Ts'o16ed5b32001-01-16 07:47:31 +0000203static void print_journal_information(ext2_filsys fs)
204{
205 errcode_t retval;
206 char buf[1024];
207 char str[80];
208 int i;
209 journal_superblock_t *jsb;
210
211 /* Get the journal superblock */
Theodore Ts'o02088862001-01-18 01:44:19 +0000212 if ((retval = io_channel_read_blk(fs->io, fs->super->s_first_data_block+1, -1024, buf))) {
Theodore Ts'o16ed5b32001-01-16 07:47:31 +0000213 com_err(program_name, retval,
214 _("while reading journal superblock"));
215 exit(1);
216 }
217 jsb = (journal_superblock_t *) buf;
218 if ((jsb->s_header.h_magic != (unsigned) ntohl(JFS_MAGIC_NUMBER)) ||
219 (jsb->s_header.h_blocktype !=
220 (unsigned) ntohl(JFS_SUPERBLOCK_V2))) {
221 com_err(program_name, 0,
222 _("Couldn't find journal superblock magic numbers"));
223 exit(1);
224 }
225
226 fputs("\n", stdout);
227 printf("Journal block size: %d\n", ntohl(jsb->s_blocksize));
228 printf("Journal length: %d\n", ntohl(jsb->s_maxlen));
229 printf("Journal first block: %d\n", ntohl(jsb->s_first));
230 printf("Journal sequence: 0x%08x\n", ntohl(jsb->s_sequence));
231 printf("Journal start: %d\n", ntohl(jsb->s_start));
232 printf("Journal number of users: %d\n", ntohl(jsb->s_nr_users));
233 for (i=0; i < ntohl(jsb->s_nr_users); i++) {
234 if (i)
235 printf(" ");
236 else
237 printf("Journal users: ");
238 uuid_unparse(&jsb->s_users[i*16], str);
239 printf("%s\n", str);
240 }
241}
242
Theodore Ts'o00e54331997-09-16 02:13:52 +0000243int main (int argc, char ** argv)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000244{
245 errcode_t retval;
246 ext2_filsys fs;
Theodore Ts'of3db3561997-04-26 13:34:30 +0000247 int print_badblocks = 0;
Theodore Ts'o02e7dd91999-06-18 00:48:41 +0000248 int use_superblock = 0;
249 int use_blocksize = 0;
Theodore Ts'o348e43d2001-05-03 14:43:43 +0000250 int image_dump = 0;
Theodore Ts'o27401561999-09-14 20:11:19 +0000251 int force = 0;
Theodore Ts'o16ed5b32001-01-16 07:47:31 +0000252 int flags;
Theodore Ts'o27401561999-09-14 20:11:19 +0000253 int header_only = 0;
Theodore Ts'o1e3472c1997-04-29 14:53:37 +0000254 int big_endian;
Theodore Ts'o519149f1997-10-25 03:49:49 +0000255 int c;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000256
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000257#ifdef ENABLE_NLS
258 setlocale(LC_MESSAGES, "");
259 bindtextdomain(NLS_CAT_NAME, LOCALEDIR);
260 textdomain(NLS_CAT_NAME);
261#endif
Theodore Ts'o5c576471997-04-29 15:29:49 +0000262 initialize_ext2_error_table();
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000263 fprintf (stderr, _("dumpe2fs %s, %s for EXT2 FS %s, %s\n"),
Theodore Ts'o3839e651997-04-26 13:21:57 +0000264 E2FSPROGS_VERSION, E2FSPROGS_DATE,
265 EXT2FS_VERSION, EXT2FS_DATE);
266 if (argc && *argv)
267 program_name = *argv;
Theodore Ts'of3db3561997-04-26 13:34:30 +0000268
Theodore Ts'o348e43d2001-05-03 14:43:43 +0000269 while ((c = getopt (argc, argv, "bfhixVo:")) != EOF) {
Theodore Ts'of3db3561997-04-26 13:34:30 +0000270 switch (c) {
271 case 'b':
272 print_badblocks++;
273 break;
Theodore Ts'o27401561999-09-14 20:11:19 +0000274 case 'f':
275 force++;
276 break;
277 case 'h':
278 header_only++;
279 break;
Theodore Ts'o348e43d2001-05-03 14:43:43 +0000280 case 'i':
281 image_dump++;
282 break;
Theodore Ts'o02e7dd91999-06-18 00:48:41 +0000283 case 'o':
284 if (optarg[0] == 'b')
285 use_superblock = atoi(optarg+1);
286 else if (optarg[0] == 'B')
287 use_blocksize = atoi(optarg+1);
288 else
289 usage();
290 break;
Theodore Ts'o5c576471997-04-29 15:29:49 +0000291 case 'V':
292 /* Print version number and exit */
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000293 fprintf(stderr, _("\tUsing %s\n"),
Theodore Ts'o5c576471997-04-29 15:29:49 +0000294 error_message(EXT2_ET_BASE));
295 exit(0);
Theodore Ts'o80c22c92000-08-14 15:32:11 +0000296 case 'x':
297 opt_hex=1;
298 break;
Theodore Ts'of3db3561997-04-26 13:34:30 +0000299 default:
Theodore Ts'o818180c1998-06-27 05:11:14 +0000300 usage();
Theodore Ts'of3db3561997-04-26 13:34:30 +0000301 }
302 }
303 if (optind > argc - 1)
Theodore Ts'o818180c1998-06-27 05:11:14 +0000304 usage();
Theodore Ts'of3db3561997-04-26 13:34:30 +0000305 device_name = argv[optind++];
Theodore Ts'o02e7dd91999-06-18 00:48:41 +0000306 if (use_superblock && !use_blocksize)
307 use_blocksize = 1024;
Theodore Ts'o16ed5b32001-01-16 07:47:31 +0000308 flags = EXT2_FLAG_JOURNAL_DEV_OK;
309 if (force)
310 flags |= EXT2_FLAG_FORCE;
Theodore Ts'o348e43d2001-05-03 14:43:43 +0000311 if (image_dump)
312 flags |= EXT2_FLAG_IMAGE_FILE;
313
Theodore Ts'o16ed5b32001-01-16 07:47:31 +0000314 retval = ext2fs_open (device_name, flags, use_superblock,
315 use_blocksize, unix_io_manager, &fs);
Theodore Ts'of3db3561997-04-26 13:34:30 +0000316 if (retval) {
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000317 com_err (program_name, retval, _("while trying to open %s"),
Theodore Ts'o3839e651997-04-26 13:21:57 +0000318 device_name);
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000319 printf (_("Couldn't find valid filesystem superblock.\n"));
Theodore Ts'o3839e651997-04-26 13:21:57 +0000320 exit (1);
321 }
Theodore Ts'of3db3561997-04-26 13:34:30 +0000322 if (print_badblocks) {
323 dump_bad_blocks(fs);
324 } else {
Theodore Ts'o27401561999-09-14 20:11:19 +0000325 big_endian = ((fs->flags & EXT2_FLAG_SWAP_BYTES) != 0);
Theodore Ts'ocbbf0312001-06-13 00:12:04 +0000326#ifdef WORDS_BIGENDIAN
327 big_endian = !big_endian;
328#endif
Theodore Ts'o27401561999-09-14 20:11:19 +0000329 if (big_endian)
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000330 printf(_("Note: This is a byte-swapped filesystem\n"));
Theodore Ts'o27401561999-09-14 20:11:19 +0000331 list_super (fs->super);
Theodore Ts'o16ed5b32001-01-16 07:47:31 +0000332 if (fs->super->s_feature_incompat &
333 EXT3_FEATURE_INCOMPAT_JOURNAL_DEV) {
334 print_journal_information(fs);
335 ext2fs_close(fs);
336 exit(0);
337 }
Theodore Ts'o27401561999-09-14 20:11:19 +0000338 list_bad_blocks (fs);
339 if (header_only) {
340 ext2fs_close (fs);
341 exit (0);
342 }
Theodore Ts'of3db3561997-04-26 13:34:30 +0000343 retval = ext2fs_read_bitmaps (fs);
344 if (retval) {
345 com_err (program_name, retval,
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000346 _("while trying to read the bitmaps"),
Theodore Ts'of3db3561997-04-26 13:34:30 +0000347 device_name);
348 ext2fs_close (fs);
349 exit (1);
350 }
Theodore Ts'of3db3561997-04-26 13:34:30 +0000351 list_desc (fs);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000352 }
Theodore Ts'o3839e651997-04-26 13:21:57 +0000353 ext2fs_close (fs);
354 exit (0);
355}