blob: fcae0f09eac4b6d9e632e0f220d3e32364563bfb [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'o4ea7bd02001-12-16 23:23:37 -050040#include <uuid/uuid.h>
Theodore Ts'o3839e651997-04-26 13:21:57 +000041
42#include "../version.h"
Theodore Ts'od9c56d32000-02-08 00:47:55 +000043#include "nls-enable.h"
Theodore Ts'o3839e651997-04-26 13:21:57 +000044
Theodore Ts'o74becf31997-04-26 14:37:06 +000045#define in_use(m, x) (ext2fs_test_bit ((x), (m)))
Theodore Ts'o3839e651997-04-26 13:21:57 +000046
47const char * program_name = "dumpe2fs";
48char * device_name = NULL;
Theodore Ts'o9b9a7802005-12-10 21:50:30 -050049int hex_format = 0;
Theodore Ts'o3839e651997-04-26 13:21:57 +000050
Theodore Ts'o818180c1998-06-27 05:11:14 +000051static void usage(void)
Theodore Ts'o3839e651997-04-26 13:21:57 +000052{
Theodore Ts'o348e43d2001-05-03 14:43:43 +000053 fprintf (stderr, _("Usage: %s [-bfhixV] [-ob superblock] "
Theodore Ts'od9c56d32000-02-08 00:47:55 +000054 "[-oB blocksize] device\n"), program_name);
Theodore Ts'o3839e651997-04-26 13:21:57 +000055 exit (1);
56}
57
Theodore Ts'o9b9a7802005-12-10 21:50:30 -050058static void print_number(unsigned long num)
Theodore Ts'o54434922003-12-07 01:28:50 -050059{
Theodore Ts'o9b9a7802005-12-10 21:50:30 -050060 if (hex_format)
61 printf("0x%04lx", num);
62 else
63 printf("%lu", num);
64}
65
66static void print_range(unsigned long a, unsigned long b)
67{
68 if (hex_format)
69 printf("0x%04lx-0x%04lx", a, b);
70 else
71 printf("%lu-%lu", a, b);
Theodore Ts'o54434922003-12-07 01:28:50 -050072}
73
Theodore Ts'o3839e651997-04-26 13:21:57 +000074static void print_free (unsigned long group, char * bitmap,
75 unsigned long nbytes, unsigned long offset)
76{
77 int p = 0;
78 unsigned long i;
79 unsigned long j;
80
Theodore Ts'oa5f0bb92001-12-02 19:29:35 +010081 offset += group * nbytes;
Theodore Ts'o3839e651997-04-26 13:21:57 +000082 for (i = 0; i < nbytes; i++)
83 if (!in_use (bitmap, i))
84 {
85 if (p)
86 printf (", ");
Theodore Ts'o54434922003-12-07 01:28:50 -050087 print_number(i + offset);
Theodore Ts'oa5f0bb92001-12-02 19:29:35 +010088 for (j = i; j < nbytes && !in_use (bitmap, j); j++)
89 ;
90 if (--j != i) {
91 fputc('-', stdout);
Theodore Ts'o54434922003-12-07 01:28:50 -050092 print_number(j + offset);
Theodore Ts'oa5f0bb92001-12-02 19:29:35 +010093 i = j;
Theodore Ts'o3839e651997-04-26 13:21:57 +000094 }
95 p = 1;
96 }
97}
98
Theodore Ts'of5fa2002006-05-08 20:17:26 -040099static void print_bg_opt(int bg_flags, int mask,
100 const char *str, int *first)
101{
102 if (bg_flags & mask) {
103 if (*first) {
104 fputs(" [", stdout);
105 *first = 0;
106 } else
107 fputs(", ", stdout);
108 fputs(str, stdout);
109 }
110}
111static void print_bg_opts(ext2_filsys fs, dgrp_t i)
112{
113 int first = 1, bg_flags;
114
115 if (fs->super->s_feature_compat & EXT2_FEATURE_COMPAT_LAZY_BG)
116 bg_flags = fs->group_desc[i].bg_flags;
117 else
118 bg_flags = 0;
119
120 print_bg_opt(bg_flags, EXT2_BG_INODE_UNINIT, "Inode not init",
121 &first);
122 print_bg_opt(bg_flags, EXT2_BG_BLOCK_UNINIT, "Block not init",
123 &first);
124 if (!first)
125 fputc(']', stdout);
126 fputc('\n', stdout);
127}
128
Theodore Ts'o3839e651997-04-26 13:21:57 +0000129static void list_desc (ext2_filsys fs)
130{
131 unsigned long i;
Theodore Ts'oa5f0bb92001-12-02 19:29:35 +0100132 long diff;
Eric Sandeenbb1a46a2006-09-12 14:55:22 -0400133 blk_t first_block, last_block;
Theodore Ts'oef344e12003-11-21 09:02:21 -0500134 blk_t super_blk, old_desc_blk, new_desc_blk;
Theodore Ts'od90a23e2002-10-25 17:07:11 -0400135 char *block_bitmap=NULL, *inode_bitmap=NULL;
Theodore Ts'o35238dd2004-12-23 13:54:28 -0500136 int inode_blocks_per_group, old_desc_blocks, reserved_gdt;
Theodore Ts'oef344e12003-11-21 09:02:21 -0500137 int has_super;
Theodore Ts'o80c22c92000-08-14 15:32:11 +0000138
Theodore Ts'od90a23e2002-10-25 17:07:11 -0400139 if (fs->block_map)
140 block_bitmap = fs->block_map->bitmap;
141 if (fs->inode_map)
142 inode_bitmap = fs->inode_map->bitmap;
143
Theodore Ts'o80c22c92000-08-14 15:32:11 +0000144 inode_blocks_per_group = ((fs->super->s_inodes_per_group *
145 EXT2_INODE_SIZE(fs->super)) +
146 EXT2_BLOCK_SIZE(fs->super) - 1) /
147 EXT2_BLOCK_SIZE(fs->super);
Theodore Ts'o35238dd2004-12-23 13:54:28 -0500148 reserved_gdt = fs->super->s_reserved_gdt_blocks;
Theodore Ts'oa5f0bb92001-12-02 19:29:35 +0100149 fputc('\n', stdout);
Eric Sandeenbb1a46a2006-09-12 14:55:22 -0400150 first_block = fs->super->s_first_data_block;
Theodore Ts'o76dd5e52002-10-30 23:07:21 -0500151 if (fs->super->s_feature_incompat & EXT2_FEATURE_INCOMPAT_META_BG)
152 old_desc_blocks = fs->super->s_first_meta_bg;
153 else
154 old_desc_blocks = fs->desc_blocks;
Theodore Ts'o521e3681997-04-29 17:48:10 +0000155 for (i = 0; i < fs->group_desc_count; i++) {
Eric Sandeenabf23432006-09-12 14:56:16 -0400156 first_block = ext2fs_group_first_block(fs, i);
157 last_block = ext2fs_group_last_block(fs, i);
158
Theodore Ts'oef344e12003-11-21 09:02:21 -0500159 ext2fs_super_and_bgd_loc(fs, i, &super_blk,
160 &old_desc_blk, &new_desc_blk, 0);
Eric Sandeenbb1a46a2006-09-12 14:55:22 -0400161
Theodore Ts'oa5f0bb92001-12-02 19:29:35 +0100162 printf (_("Group %lu: (Blocks "), i);
Eric Sandeenbb1a46a2006-09-12 14:55:22 -0400163 print_range(first_block, last_block);
Theodore Ts'of5fa2002006-05-08 20:17:26 -0400164 fputs(")", stdout);
165 print_bg_opts(fs, i);
Theodore Ts'oef344e12003-11-21 09:02:21 -0500166 has_super = ((i==0) || super_blk);
Theodore Ts'oc046ac72002-10-20 00:38:57 -0400167 if (has_super) {
168 printf (_(" %s superblock at "),
Theodore Ts'oa5f0bb92001-12-02 19:29:35 +0100169 i == 0 ? _("Primary") : _("Backup"));
Theodore Ts'o54434922003-12-07 01:28:50 -0500170 print_number(super_blk);
Theodore Ts'oc046ac72002-10-20 00:38:57 -0400171 }
Theodore Ts'oef344e12003-11-21 09:02:21 -0500172 if (old_desc_blk) {
173 printf(_(", Group descriptors at "));
Theodore Ts'o9b9a7802005-12-10 21:50:30 -0500174 print_range(old_desc_blk,
175 old_desc_blk + old_desc_blocks - 1);
Theodore Ts'o35238dd2004-12-23 13:54:28 -0500176 if (reserved_gdt) {
177 printf(_("\n Reserved GDT blocks at "));
Theodore Ts'o9b9a7802005-12-10 21:50:30 -0500178 print_range(old_desc_blk + old_desc_blocks,
179 old_desc_blk + old_desc_blocks +
180 reserved_gdt - 1);
Theodore Ts'o35238dd2004-12-23 13:54:28 -0500181 }
Theodore Ts'oef344e12003-11-21 09:02:21 -0500182 } else if (new_desc_blk) {
183 fputc(has_super ? ',' : ' ', stdout);
184 printf(_(" Group descriptor at "));
Theodore Ts'o54434922003-12-07 01:28:50 -0500185 print_number(new_desc_blk);
Theodore Ts'oef344e12003-11-21 09:02:21 -0500186 has_super++;
Theodore Ts'oa5f0bb92001-12-02 19:29:35 +0100187 }
Theodore Ts'oef344e12003-11-21 09:02:21 -0500188 if (has_super)
189 fputc('\n', stdout);
Theodore Ts'oa5f0bb92001-12-02 19:29:35 +0100190 fputs(_(" Block bitmap at "), stdout);
Theodore Ts'o54434922003-12-07 01:28:50 -0500191 print_number(fs->group_desc[i].bg_block_bitmap);
Eric Sandeenbb1a46a2006-09-12 14:55:22 -0400192 diff = fs->group_desc[i].bg_block_bitmap - first_block;
Theodore Ts'oa5f0bb92001-12-02 19:29:35 +0100193 if (diff >= 0)
Theodore Ts'o4ea7bd02001-12-16 23:23:37 -0500194 printf(" (+%ld)", diff);
Theodore Ts'oa5f0bb92001-12-02 19:29:35 +0100195 fputs(_(", Inode bitmap at "), stdout);
Theodore Ts'o54434922003-12-07 01:28:50 -0500196 print_number(fs->group_desc[i].bg_inode_bitmap);
Eric Sandeenbb1a46a2006-09-12 14:55:22 -0400197 diff = fs->group_desc[i].bg_inode_bitmap - first_block;
Theodore Ts'oa5f0bb92001-12-02 19:29:35 +0100198 if (diff >= 0)
Theodore Ts'o4ea7bd02001-12-16 23:23:37 -0500199 printf(" (+%ld)", diff);
Theodore Ts'oa5f0bb92001-12-02 19:29:35 +0100200 fputs(_("\n Inode table at "), stdout);
Theodore Ts'o9b9a7802005-12-10 21:50:30 -0500201 print_range(fs->group_desc[i].bg_inode_table,
202 fs->group_desc[i].bg_inode_table +
203 inode_blocks_per_group - 1);
Eric Sandeenbb1a46a2006-09-12 14:55:22 -0400204 diff = fs->group_desc[i].bg_inode_table - first_block;
Theodore Ts'oa5f0bb92001-12-02 19:29:35 +0100205 if (diff > 0)
Theodore Ts'o4ea7bd02001-12-16 23:23:37 -0500206 printf(" (+%ld)", diff);
Theodore Ts'oa5f0bb92001-12-02 19:29:35 +0100207 printf (_("\n %d free blocks, %d free inodes, "
Theodore Ts'od90a23e2002-10-25 17:07:11 -0400208 "%d directories\n"),
Theodore Ts'o3839e651997-04-26 13:21:57 +0000209 fs->group_desc[i].bg_free_blocks_count,
210 fs->group_desc[i].bg_free_inodes_count,
211 fs->group_desc[i].bg_used_dirs_count);
Theodore Ts'od90a23e2002-10-25 17:07:11 -0400212 if (block_bitmap) {
213 fputs(_(" Free blocks: "), stdout);
214 print_free (i, block_bitmap,
215 fs->super->s_blocks_per_group,
216 fs->super->s_first_data_block);
217 fputc('\n', stdout);
218 block_bitmap += fs->super->s_blocks_per_group / 8;
219 }
220 if (inode_bitmap) {
221 fputs(_(" Free inodes: "), stdout);
222 print_free (i, inode_bitmap,
223 fs->super->s_inodes_per_group, 1);
224 fputc('\n', stdout);
225 inode_bitmap += fs->super->s_inodes_per_group / 8;
226 }
Theodore Ts'o3839e651997-04-26 13:21:57 +0000227 }
228}
229
Theodore Ts'o0655b102001-12-21 23:59:46 -0500230static void list_bad_blocks(ext2_filsys fs, int dump)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000231{
232 badblocks_list bb_list = 0;
233 badblocks_iterate bb_iter;
234 blk_t blk;
235 errcode_t retval;
Theodore Ts'o0655b102001-12-21 23:59:46 -0500236 const char *header, *fmt;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000237
238 retval = ext2fs_read_bb_inode(fs, &bb_list);
239 if (retval) {
Theodore Ts'o9b9a7802005-12-10 21:50:30 -0500240 com_err("ext2fs_read_bb_inode", retval, 0);
Theodore Ts'o0655b102001-12-21 23:59:46 -0500241 return;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000242 }
Theodore Ts'ocbbf0312001-06-13 00:12:04 +0000243 retval = ext2fs_badblocks_list_iterate_begin(bb_list, &bb_iter);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000244 if (retval) {
Theodore Ts'ocbbf0312001-06-13 00:12:04 +0000245 com_err("ext2fs_badblocks_list_iterate_begin", retval,
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000246 _("while printing bad block list"));
Theodore Ts'o0655b102001-12-21 23:59:46 -0500247 return;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000248 }
Theodore Ts'o0655b102001-12-21 23:59:46 -0500249 if (dump) {
Eric Sandeend0ff90d2006-09-12 14:56:15 -0400250 header = fmt = "%u\n";
Theodore Ts'o0655b102001-12-21 23:59:46 -0500251 } else {
Eric Sandeend0ff90d2006-09-12 14:56:15 -0400252 header = _("Bad blocks: %u");
253 fmt = ", %u";
Theodore Ts'o0655b102001-12-21 23:59:46 -0500254 }
255 while (ext2fs_badblocks_list_iterate(bb_iter, &blk)) {
256 printf(header ? header : fmt, blk);
257 header = 0;
258 }
Theodore Ts'ocbbf0312001-06-13 00:12:04 +0000259 ext2fs_badblocks_list_iterate_end(bb_iter);
Theodore Ts'o0655b102001-12-21 23:59:46 -0500260 if (!dump)
261 fputc('\n', stdout);
Theodore Ts'o1e3472c1997-04-29 14:53:37 +0000262}
Theodore Ts'of3db3561997-04-26 13:34:30 +0000263
Theodore Ts'o6515a6f2006-03-29 14:03:07 -0500264static void print_inline_journal_information(ext2_filsys fs)
265{
266 struct ext2_inode inode;
267 errcode_t retval;
268 ino_t ino = fs->super->s_journal_inum;
269 int size;
270
271 retval = ext2fs_read_inode(fs, ino, &inode);
272 if (retval) {
273 com_err(program_name, retval,
274 _("while reading journal inode"));
275 exit(1);
276 }
277 fputs(_("Journal size: "), stdout);
278 size = inode.i_blocks >> 1;
279 if (size < 8192)
280 printf("%uk\n", size);
281 else
282 printf("%uM\n", size >> 10);
283}
284
Theodore Ts'o16ed5b32001-01-16 07:47:31 +0000285static void print_journal_information(ext2_filsys fs)
286{
287 errcode_t retval;
288 char buf[1024];
289 char str[80];
Theodore Ts'o54434922003-12-07 01:28:50 -0500290 unsigned int i;
Theodore Ts'o16ed5b32001-01-16 07:47:31 +0000291 journal_superblock_t *jsb;
292
293 /* Get the journal superblock */
Theodore Ts'o02088862001-01-18 01:44:19 +0000294 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 +0000295 com_err(program_name, retval,
296 _("while reading journal superblock"));
297 exit(1);
298 }
299 jsb = (journal_superblock_t *) buf;
300 if ((jsb->s_header.h_magic != (unsigned) ntohl(JFS_MAGIC_NUMBER)) ||
301 (jsb->s_header.h_blocktype !=
302 (unsigned) ntohl(JFS_SUPERBLOCK_V2))) {
303 com_err(program_name, 0,
304 _("Couldn't find journal superblock magic numbers"));
305 exit(1);
306 }
307
Takashi Sato8deb80a2006-03-18 21:43:46 -0500308 printf(_("\nJournal block size: %u\n"
309 "Journal length: %u\n"
310 "Journal first block: %u\n"
Theodore Ts'oa5f0bb92001-12-02 19:29:35 +0100311 "Journal sequence: 0x%08x\n"
Takashi Sato8deb80a2006-03-18 21:43:46 -0500312 "Journal start: %u\n"
Matthias Andreef6567a82006-05-30 16:26:29 +0200313 "Journal number of users: %u\n"),
314 (unsigned int)ntohl(jsb->s_blocksize), (unsigned int)ntohl(jsb->s_maxlen),
315 (unsigned int)ntohl(jsb->s_first), (unsigned int)ntohl(jsb->s_sequence),
316 (unsigned int)ntohl(jsb->s_start), (unsigned int)ntohl(jsb->s_nr_users));
Theodore Ts'oa5f0bb92001-12-02 19:29:35 +0100317
Theodore Ts'o16ed5b32001-01-16 07:47:31 +0000318 for (i=0; i < ntohl(jsb->s_nr_users); i++) {
Theodore Ts'o16ed5b32001-01-16 07:47:31 +0000319 uuid_unparse(&jsb->s_users[i*16], str);
Theodore Ts'oa5f0bb92001-12-02 19:29:35 +0100320 printf(i ? " %s\n"
Theodore Ts'obb145b02005-06-20 08:35:27 -0400321 : _("Journal users: %s\n"),
Theodore Ts'oa5f0bb92001-12-02 19:29:35 +0100322 str);
Theodore Ts'o16ed5b32001-01-16 07:47:31 +0000323 }
324}
325
Theodore Ts'o00e54331997-09-16 02:13:52 +0000326int main (int argc, char ** argv)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000327{
328 errcode_t retval;
329 ext2_filsys fs;
Theodore Ts'of3db3561997-04-26 13:34:30 +0000330 int print_badblocks = 0;
Theodore Ts'o02e7dd91999-06-18 00:48:41 +0000331 int use_superblock = 0;
332 int use_blocksize = 0;
Theodore Ts'o348e43d2001-05-03 14:43:43 +0000333 int image_dump = 0;
Theodore Ts'o27401561999-09-14 20:11:19 +0000334 int force = 0;
Theodore Ts'o16ed5b32001-01-16 07:47:31 +0000335 int flags;
Theodore Ts'o27401561999-09-14 20:11:19 +0000336 int header_only = 0;
Theodore Ts'o1e3472c1997-04-29 14:53:37 +0000337 int big_endian;
Theodore Ts'o519149f1997-10-25 03:49:49 +0000338 int c;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000339
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000340#ifdef ENABLE_NLS
341 setlocale(LC_MESSAGES, "");
Theodore Ts'o14308a52002-03-05 03:26:52 -0500342 setlocale(LC_CTYPE, "");
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000343 bindtextdomain(NLS_CAT_NAME, LOCALEDIR);
344 textdomain(NLS_CAT_NAME);
345#endif
Theodore Ts'oa6d83022006-12-26 03:38:07 -0500346 add_error_table(&et_ext2_error_table);
Theodore Ts'o0f8973f2001-08-27 12:44:23 -0400347 fprintf (stderr, "dumpe2fs %s (%s)\n", E2FSPROGS_VERSION,
348 E2FSPROGS_DATE);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000349 if (argc && *argv)
350 program_name = *argv;
Theodore Ts'of3db3561997-04-26 13:34:30 +0000351
Theodore Ts'o348e43d2001-05-03 14:43:43 +0000352 while ((c = getopt (argc, argv, "bfhixVo:")) != EOF) {
Theodore Ts'of3db3561997-04-26 13:34:30 +0000353 switch (c) {
354 case 'b':
355 print_badblocks++;
356 break;
Theodore Ts'o27401561999-09-14 20:11:19 +0000357 case 'f':
358 force++;
359 break;
360 case 'h':
361 header_only++;
362 break;
Theodore Ts'o348e43d2001-05-03 14:43:43 +0000363 case 'i':
364 image_dump++;
365 break;
Theodore Ts'o02e7dd91999-06-18 00:48:41 +0000366 case 'o':
367 if (optarg[0] == 'b')
368 use_superblock = atoi(optarg+1);
369 else if (optarg[0] == 'B')
370 use_blocksize = atoi(optarg+1);
371 else
372 usage();
373 break;
Theodore Ts'o5c576471997-04-29 15:29:49 +0000374 case 'V':
375 /* Print version number and exit */
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000376 fprintf(stderr, _("\tUsing %s\n"),
Theodore Ts'o5c576471997-04-29 15:29:49 +0000377 error_message(EXT2_ET_BASE));
378 exit(0);
Theodore Ts'o80c22c92000-08-14 15:32:11 +0000379 case 'x':
Theodore Ts'o9b9a7802005-12-10 21:50:30 -0500380 hex_format++;
Theodore Ts'o80c22c92000-08-14 15:32:11 +0000381 break;
Theodore Ts'of3db3561997-04-26 13:34:30 +0000382 default:
Theodore Ts'o818180c1998-06-27 05:11:14 +0000383 usage();
Theodore Ts'of3db3561997-04-26 13:34:30 +0000384 }
385 }
386 if (optind > argc - 1)
Theodore Ts'o818180c1998-06-27 05:11:14 +0000387 usage();
Theodore Ts'of3db3561997-04-26 13:34:30 +0000388 device_name = argv[optind++];
Theodore Ts'o02e7dd91999-06-18 00:48:41 +0000389 if (use_superblock && !use_blocksize)
390 use_blocksize = 1024;
Theodore Ts'ocf8272e2006-11-12 23:26:46 -0500391 flags = EXT2_FLAG_JOURNAL_DEV_OK | EXT2_FLAG_SOFTSUPP_FEATURES;
Theodore Ts'o16ed5b32001-01-16 07:47:31 +0000392 if (force)
393 flags |= EXT2_FLAG_FORCE;
Theodore Ts'o348e43d2001-05-03 14:43:43 +0000394 if (image_dump)
395 flags |= EXT2_FLAG_IMAGE_FILE;
396
Theodore Ts'o16ed5b32001-01-16 07:47:31 +0000397 retval = ext2fs_open (device_name, flags, use_superblock,
398 use_blocksize, unix_io_manager, &fs);
Theodore Ts'of3db3561997-04-26 13:34:30 +0000399 if (retval) {
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000400 com_err (program_name, retval, _("while trying to open %s"),
Theodore Ts'o3839e651997-04-26 13:21:57 +0000401 device_name);
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000402 printf (_("Couldn't find valid filesystem superblock.\n"));
Theodore Ts'o3839e651997-04-26 13:21:57 +0000403 exit (1);
404 }
Theodore Ts'of3db3561997-04-26 13:34:30 +0000405 if (print_badblocks) {
Theodore Ts'o0655b102001-12-21 23:59:46 -0500406 list_bad_blocks(fs, 1);
Theodore Ts'of3db3561997-04-26 13:34:30 +0000407 } else {
Theodore Ts'o27401561999-09-14 20:11:19 +0000408 big_endian = ((fs->flags & EXT2_FLAG_SWAP_BYTES) != 0);
Theodore Ts'ocbbf0312001-06-13 00:12:04 +0000409#ifdef WORDS_BIGENDIAN
410 big_endian = !big_endian;
411#endif
Theodore Ts'o27401561999-09-14 20:11:19 +0000412 if (big_endian)
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000413 printf(_("Note: This is a byte-swapped filesystem\n"));
Theodore Ts'o27401561999-09-14 20:11:19 +0000414 list_super (fs->super);
Theodore Ts'o16ed5b32001-01-16 07:47:31 +0000415 if (fs->super->s_feature_incompat &
416 EXT3_FEATURE_INCOMPAT_JOURNAL_DEV) {
417 print_journal_information(fs);
418 ext2fs_close(fs);
419 exit(0);
420 }
Theodore Ts'o6515a6f2006-03-29 14:03:07 -0500421 if (fs->super->s_feature_compat &
422 EXT3_FEATURE_COMPAT_HAS_JOURNAL)
423 print_inline_journal_information(fs);
Theodore Ts'o0655b102001-12-21 23:59:46 -0500424 list_bad_blocks(fs, 0);
Theodore Ts'o27401561999-09-14 20:11:19 +0000425 if (header_only) {
426 ext2fs_close (fs);
427 exit (0);
428 }
Theodore Ts'of3db3561997-04-26 13:34:30 +0000429 retval = ext2fs_read_bitmaps (fs);
Theodore Ts'of3db3561997-04-26 13:34:30 +0000430 list_desc (fs);
Theodore Ts'od90a23e2002-10-25 17:07:11 -0400431 if (retval) {
432 printf(_("\n%s: %s: error reading bitmaps: %s\n"),
433 program_name, device_name,
434 error_message(retval));
435 }
Theodore Ts'o3839e651997-04-26 13:21:57 +0000436 }
Theodore Ts'o3839e651997-04-26 13:21:57 +0000437 ext2fs_close (fs);
Theodore Ts'oa6d83022006-12-26 03:38:07 -0500438 remove_error_table(&et_ext2_error_table);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000439 exit (0);
440}