Whamcloud - gitweb
e2fsprogs: fix blk_t <- blk64_t assignment mismatches
[tools/e2fsprogs.git] / misc / dumpe2fs.c
1 /*
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  *
9  * 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%
15  */
16
17 /*
18  * History:
19  * 94/01/09     - Creation
20  * 94/02/27     - Ported to use the ext2fs library
21  */
22
23 #include "config.h"
24 #ifdef HAVE_GETOPT_H
25 #include <getopt.h>
26 #else
27 extern char *optarg;
28 extern int optind;
29 #endif
30 #include <fcntl.h>
31 #include <stdio.h>
32 #include <stdlib.h>
33 #include <string.h>
34 #include <unistd.h>
35
36 #include "ext2fs/ext2_fs.h"
37
38 #include "ext2fs/ext2fs.h"
39 #include "e2p/e2p.h"
40 #include "jfs_user.h"
41 #include <uuid/uuid.h>
42
43 #include "../version.h"
44 #include "nls-enable.h"
45
46 #define in_use(m, x)    (ext2fs_test_bit ((x), (m)))
47
48 const char * program_name = "dumpe2fs";
49 char * device_name = NULL;
50 int hex_format = 0;
51 int blocks64 = 0;
52
53 static void usage(void)
54 {
55         fprintf (stderr, _("Usage: %s [-bfhixV] [-o superblock=<num>] "
56                  "[-o blocksize=<num>] device\n"), program_name);
57         exit (1);
58 }
59
60 static void print_number(unsigned long long num)
61 {
62         if (hex_format) {
63                 if (blocks64)
64                         printf("0x%08llx", num);
65                 else
66                         printf("0x%04llx", num);
67         } else
68                 printf("%llu", num);
69 }
70
71 static void print_range(unsigned long long a, unsigned long long b)
72 {
73         if (hex_format) {
74                 if (blocks64)
75                         printf("0x%08llx-0x%08llx", a, b);
76                 else
77                         printf("0x%04llx-0x%04llx", a, b);
78         } else
79                 printf("%llu-%llu", a, b);
80 }
81
82 static void print_free(unsigned long group, char * bitmap,
83                        unsigned long num, unsigned long offset, int ratio)
84 {
85         int p = 0;
86         unsigned long i;
87         unsigned long j;
88
89         offset /= ratio;
90         offset += group * num;
91         for (i = 0; i < num; i++)
92                 if (!in_use (bitmap, i))
93                 {
94                         if (p)
95                                 printf (", ");
96                         print_number((i + offset) * ratio);
97                         for (j = i; j < num && !in_use (bitmap, j); j++)
98                                 ;
99                         if (--j != i) {
100                                 fputc('-', stdout);
101                                 print_number((j + offset) * ratio);
102                                 i = j;
103                         }
104                         p = 1;
105                 }
106 }
107
108 static void print_bg_opt(int bg_flags, int mask,
109                           const char *str, int *first)
110 {
111         if (bg_flags & mask) {
112                 if (*first) {
113                         fputs(" [", stdout);
114                         *first = 0;
115                 } else
116                         fputs(", ", stdout);
117                 fputs(str, stdout);
118         }
119 }
120 static void print_bg_opts(ext2_filsys fs, dgrp_t i)
121 {
122         int first = 1, bg_flags = 0;
123
124         if (fs->super->s_feature_ro_compat & EXT4_FEATURE_RO_COMPAT_GDT_CSUM)
125                 bg_flags = ext2fs_bg_flags(fs, i);
126
127         print_bg_opt(bg_flags, EXT2_BG_INODE_UNINIT, "INODE_UNINIT",
128                      &first);
129         print_bg_opt(bg_flags, EXT2_BG_BLOCK_UNINIT, "BLOCK_UNINIT",
130                      &first);
131         print_bg_opt(bg_flags, EXT2_BG_INODE_ZEROED, "ITABLE_ZEROED",
132                      &first);
133         if (!first)
134                 fputc(']', stdout);
135         fputc('\n', stdout);
136 }
137
138 static void print_bg_rel_offset(ext2_filsys fs, blk64_t block, int itable,
139                                 blk64_t first_block, blk64_t last_block)
140 {
141         if ((block >= first_block) && (block <= last_block)) {
142                 if (itable && block == first_block)
143                         return;
144                 printf(" (+%u)", (unsigned)(block - first_block));
145         } else if (fs->super->s_feature_incompat &
146                    EXT4_FEATURE_INCOMPAT_FLEX_BG) {
147                 dgrp_t flex_grp = ext2fs_group_of_blk2(fs, block);
148                 printf(" (bg #%u + %u)", flex_grp,
149                        (unsigned)(block-ext2fs_group_first_block(fs,flex_grp)));
150         }
151 }
152
153 static void list_desc (ext2_filsys fs)
154 {
155         unsigned long i;
156         blk64_t first_block, last_block;
157         blk64_t super_blk, old_desc_blk, new_desc_blk;
158         char *block_bitmap=NULL, *inode_bitmap=NULL;
159         const char *units = _("blocks");
160         int inode_blocks_per_group, old_desc_blocks, reserved_gdt;
161         int             block_nbytes, inode_nbytes;
162         int has_super;
163         blk64_t         blk_itr = EXT2FS_B2C(fs, fs->super->s_first_data_block);
164         ext2_ino_t      ino_itr = 1;
165
166         if (EXT2_HAS_RO_COMPAT_FEATURE(fs->super,
167                                        EXT4_FEATURE_RO_COMPAT_BIGALLOC))
168                 units = _("clusters");
169
170         block_nbytes = EXT2_CLUSTERS_PER_GROUP(fs->super) / 8;
171         inode_nbytes = EXT2_INODES_PER_GROUP(fs->super) / 8;
172
173         if (fs->block_map)
174                 block_bitmap = malloc(block_nbytes);
175         if (fs->inode_map)
176                 inode_bitmap = malloc(inode_nbytes);
177
178         inode_blocks_per_group = ((fs->super->s_inodes_per_group *
179                                    EXT2_INODE_SIZE(fs->super)) +
180                                   EXT2_BLOCK_SIZE(fs->super) - 1) /
181                                  EXT2_BLOCK_SIZE(fs->super);
182         reserved_gdt = fs->super->s_reserved_gdt_blocks;
183         fputc('\n', stdout);
184         first_block = fs->super->s_first_data_block;
185         if (fs->super->s_feature_incompat & EXT2_FEATURE_INCOMPAT_META_BG)
186                 old_desc_blocks = fs->super->s_first_meta_bg;
187         else
188                 old_desc_blocks = fs->desc_blocks;
189         for (i = 0; i < fs->group_desc_count; i++) {
190                 first_block = ext2fs_group_first_block2(fs, i);
191                 last_block = ext2fs_group_last_block2(fs, i);
192
193                 ext2fs_super_and_bgd_loc2(fs, i, &super_blk,
194                                           &old_desc_blk, &new_desc_blk, 0);
195
196                 printf (_("Group %lu: (Blocks "), i);
197                 print_range(first_block, last_block);
198                 fputs(")", stdout);
199                 print_bg_opts(fs, i);
200                 if (fs->super->s_feature_ro_compat & EXT4_FEATURE_RO_COMPAT_GDT_CSUM) {
201                         unsigned csum = ext2fs_bg_checksum(fs, i);
202                         unsigned exp_csum = ext2fs_group_desc_csum(fs, i);
203
204                         printf(_("  Checksum 0x%04x"), csum);
205                         if (csum != exp_csum)
206                                 printf(_(" (EXPECTED 0x%04x)"), exp_csum);
207                         printf(_(", unused inodes %u\n"),
208                                ext2fs_bg_itable_unused(fs, i));
209                 }
210                 has_super = ((i==0) || super_blk);
211                 if (has_super) {
212                         printf (_("  %s superblock at "),
213                                 i == 0 ? _("Primary") : _("Backup"));
214                         print_number(super_blk);
215                 }
216                 if (old_desc_blk) {
217                         printf(_(", Group descriptors at "));
218                         print_range(old_desc_blk,
219                                     old_desc_blk + old_desc_blocks - 1);
220                         if (reserved_gdt) {
221                                 printf(_("\n  Reserved GDT blocks at "));
222                                 print_range(old_desc_blk + old_desc_blocks,
223                                             old_desc_blk + old_desc_blocks +
224                                             reserved_gdt - 1);
225                         }
226                 } else if (new_desc_blk) {
227                         fputc(has_super ? ',' : ' ', stdout);
228                         printf(_(" Group descriptor at "));
229                         print_number(new_desc_blk);
230                         has_super++;
231                 }
232                 if (has_super)
233                         fputc('\n', stdout);
234                 fputs(_("  Block bitmap at "), stdout);
235                 print_number(ext2fs_block_bitmap_loc(fs, i));
236                 print_bg_rel_offset(fs, ext2fs_block_bitmap_loc(fs, i), 0,
237                                     first_block, last_block);
238                 fputs(_(", Inode bitmap at "), stdout);
239                 print_number(ext2fs_inode_bitmap_loc(fs, i));
240                 print_bg_rel_offset(fs, ext2fs_inode_bitmap_loc(fs, i), 0,
241                                     first_block, last_block);
242                 fputs(_("\n  Inode table at "), stdout);
243                 print_range(ext2fs_inode_table_loc(fs, i),
244                             ext2fs_inode_table_loc(fs, i) +
245                             inode_blocks_per_group - 1);
246                 print_bg_rel_offset(fs, ext2fs_inode_table_loc(fs, i), 1,
247                                     first_block, last_block);
248                 printf (_("\n  %u free %s, %u free inodes, "
249                           "%u directories%s"),
250                         ext2fs_bg_free_blocks_count(fs, i), units,
251                         ext2fs_bg_free_inodes_count(fs, i),
252                         ext2fs_bg_used_dirs_count(fs, i),
253                         ext2fs_bg_itable_unused(fs, i) ? "" : "\n");
254                 if (ext2fs_bg_itable_unused(fs, i))
255                         printf (_(", %u unused inodes\n"),
256                                 ext2fs_bg_itable_unused(fs, i));
257                 if (block_bitmap) {
258                         fputs(_("  Free blocks: "), stdout);
259                         ext2fs_get_block_bitmap_range2(fs->block_map,
260                                  blk_itr, block_nbytes << 3, block_bitmap);
261                         print_free(i, block_bitmap,
262                                    fs->super->s_clusters_per_group,
263                                    fs->super->s_first_data_block,
264                                    EXT2FS_CLUSTER_RATIO(fs));
265                         fputc('\n', stdout);
266                         blk_itr += fs->super->s_clusters_per_group;
267                 }
268                 if (inode_bitmap) {
269                         fputs(_("  Free inodes: "), stdout);
270                         ext2fs_get_inode_bitmap_range2(fs->inode_map,
271                                  ino_itr, inode_nbytes << 3, inode_bitmap);
272                         print_free(i, inode_bitmap,
273                                    fs->super->s_inodes_per_group, 1, 1);
274                         fputc('\n', stdout);
275                         ino_itr += fs->super->s_inodes_per_group;
276                 }
277         }
278         if (block_bitmap)
279                 free(block_bitmap);
280         if (inode_bitmap)
281                 free(inode_bitmap);
282 }
283
284 static void list_bad_blocks(ext2_filsys fs, int dump)
285 {
286         badblocks_list          bb_list = 0;
287         badblocks_iterate       bb_iter;
288         blk_t                   blk;
289         errcode_t               retval;
290         const char              *header, *fmt;
291
292         retval = ext2fs_read_bb_inode(fs, &bb_list);
293         if (retval) {
294                 com_err("ext2fs_read_bb_inode", retval, 0);
295                 return;
296         }
297         retval = ext2fs_badblocks_list_iterate_begin(bb_list, &bb_iter);
298         if (retval) {
299                 com_err("ext2fs_badblocks_list_iterate_begin", retval,
300                         _("while printing bad block list"));
301                 return;
302         }
303         if (dump) {
304                 header = fmt = "%u\n";
305         } else {
306                 header =  _("Bad blocks: %u");
307                 fmt = ", %u";
308         }
309         while (ext2fs_badblocks_list_iterate(bb_iter, &blk)) {
310                 printf(header ? header : fmt, blk);
311                 header = 0;
312         }
313         ext2fs_badblocks_list_iterate_end(bb_iter);
314         if (!dump)
315                 fputc('\n', stdout);
316         ext2fs_badblocks_list_free(bb_list);
317 }
318
319 static void print_inline_journal_information(ext2_filsys fs)
320 {
321         journal_superblock_t    *jsb;
322         struct ext2_inode       inode;
323         ext2_file_t             journal_file;
324         errcode_t               retval;
325         ino_t                   ino = fs->super->s_journal_inum;
326         char                    buf[1024];
327         __u32                   *mask_ptr, mask, m;
328         int                     i, j, size, printed = 0;
329
330         retval = ext2fs_read_inode(fs, ino,  &inode);
331         if (retval) {
332                 com_err(program_name, retval,
333                         _("while reading journal inode"));
334                 exit(1);
335         }
336         retval = ext2fs_file_open2(fs, ino, &inode, 0, &journal_file);
337         if (retval) {
338                 com_err(program_name, retval,
339                         _("while opening journal inode"));
340                 exit(1);
341         }
342         retval = ext2fs_file_read(journal_file, buf, sizeof(buf), 0);
343         if (retval) {
344                 com_err(program_name, retval,
345                         _("while reading journal super block"));
346                 exit(1);
347         }
348         ext2fs_file_close(journal_file);
349         jsb = (journal_superblock_t *) buf;
350         if (be32_to_cpu(jsb->s_header.h_magic) != JFS_MAGIC_NUMBER) {
351                 fprintf(stderr,
352                         "Journal superblock magic number invalid!\n");
353                 exit(1);
354         }
355         printf(_("Journal features:        "));
356         for (i=0, mask_ptr=&jsb->s_feature_compat; i <3; i++,mask_ptr++) {
357                 mask = be32_to_cpu(*mask_ptr);
358                 for (j=0,m=1; j < 32; j++, m<<=1) {
359                         if (mask & m) {
360                                 printf(" %s", e2p_jrnl_feature2string(i, m));
361                                 printed++;
362                         }
363                 }
364         }
365         if (printed == 0)
366                 printf(" (none)");
367         printf("\n");
368         fputs(_("Journal size:             "), stdout);
369         if ((fs->super->s_feature_ro_compat &
370              EXT4_FEATURE_RO_COMPAT_HUGE_FILE) &&
371             (inode.i_flags & EXT4_HUGE_FILE_FL))
372                 size = inode.i_blocks / (fs->blocksize / 1024);
373         else
374                 size = inode.i_blocks >> 1;
375         if (size < 8192)
376                 printf("%uk\n", size);
377         else
378                 printf("%uM\n", size >> 10);
379         printf(_("Journal length:           %u\n"
380                  "Journal sequence:         0x%08x\n"
381                  "Journal start:            %u\n"),
382                (unsigned int)ntohl(jsb->s_maxlen),
383                (unsigned int)ntohl(jsb->s_sequence),
384                (unsigned int)ntohl(jsb->s_start));
385         if (jsb->s_errno != 0)
386                 printf(_("Journal errno:            %d\n"),
387                        (int) ntohl(jsb->s_errno));
388 }
389
390 static void print_journal_information(ext2_filsys fs)
391 {
392         errcode_t       retval;
393         char            buf[1024];
394         char            str[80];
395         unsigned int    i;
396         journal_superblock_t    *jsb;
397
398         /* Get the journal superblock */
399         if ((retval = io_channel_read_blk64(fs->io, fs->super->s_first_data_block+1, -1024, buf))) {
400                 com_err(program_name, retval,
401                         _("while reading journal superblock"));
402                 exit(1);
403         }
404         jsb = (journal_superblock_t *) buf;
405         if ((jsb->s_header.h_magic != (unsigned) ntohl(JFS_MAGIC_NUMBER)) ||
406             (jsb->s_header.h_blocktype !=
407              (unsigned) ntohl(JFS_SUPERBLOCK_V2))) {
408                 com_err(program_name, 0,
409                         _("Couldn't find journal superblock magic numbers"));
410                 exit(1);
411         }
412
413         printf(_("\nJournal block size:       %u\n"
414                  "Journal length:           %u\n"
415                  "Journal first block:      %u\n"
416                  "Journal sequence:         0x%08x\n"
417                  "Journal start:            %u\n"
418                  "Journal number of users:  %u\n"),
419                (unsigned int)ntohl(jsb->s_blocksize),  (unsigned int)ntohl(jsb->s_maxlen),
420                (unsigned int)ntohl(jsb->s_first), (unsigned int)ntohl(jsb->s_sequence),
421                (unsigned int)ntohl(jsb->s_start), (unsigned int)ntohl(jsb->s_nr_users));
422
423         for (i=0; i < ntohl(jsb->s_nr_users); i++) {
424                 uuid_unparse(&jsb->s_users[i*16], str);
425                 printf(i ? "                          %s\n"
426                        : _("Journal users:            %s\n"),
427                        str);
428         }
429 }
430
431 static void parse_extended_opts(const char *opts, blk64_t *superblock,
432                                 int *blocksize)
433 {
434         char    *buf, *token, *next, *p, *arg, *badopt = 0;
435         int     len;
436         int     do_usage = 0;
437
438         len = strlen(opts);
439         buf = malloc(len+1);
440         if (!buf) {
441                 fprintf(stderr,
442                         _("Couldn't allocate memory to parse options!\n"));
443                 exit(1);
444         }
445         strcpy(buf, opts);
446         for (token = buf; token && *token; token = next) {
447                 p = strchr(token, ',');
448                 next = 0;
449                 if (p) {
450                         *p = 0;
451                         next = p+1;
452                 }
453                 arg = strchr(token, '=');
454                 if (arg) {
455                         *arg = 0;
456                         arg++;
457                 }
458                 if (strcmp(token, "superblock") == 0 ||
459                     strcmp(token, "sb") == 0) {
460                         if (!arg) {
461                                 do_usage++;
462                                 badopt = token;
463                                 continue;
464                         }
465                         *superblock = strtoul(arg, &p, 0);
466                         if (*p) {
467                                 fprintf(stderr,
468                                         _("Invalid superblock parameter: %s\n"),
469                                         arg);
470                                 do_usage++;
471                                 continue;
472                         }
473                 } else if (strcmp(token, "blocksize") == 0 ||
474                            strcmp(token, "bs") == 0) {
475                         if (!arg) {
476                                 do_usage++;
477                                 badopt = token;
478                                 continue;
479                         }
480                         *blocksize = strtoul(arg, &p, 0);
481                         if (*p) {
482                                 fprintf(stderr,
483                                         _("Invalid blocksize parameter: %s\n"),
484                                         arg);
485                                 do_usage++;
486                                 continue;
487                         }
488                 } else {
489                         do_usage++;
490                         badopt = token;
491                 }
492         }
493         if (do_usage) {
494                 fprintf(stderr, _("\nBad extended option(s) specified: %s\n\n"
495                         "Extended options are separated by commas, "
496                         "and may take an argument which\n"
497                         "\tis set off by an equals ('=') sign.\n\n"
498                         "Valid extended options are:\n"
499                         "\tsuperblock=<superblock number>\n"
500                         "\tblocksize=<blocksize>\n"),
501                         badopt ? badopt : "");
502                 free(buf);
503                 exit(1);
504         }
505         free(buf);
506 }
507
508 int main (int argc, char ** argv)
509 {
510         errcode_t       retval;
511         ext2_filsys     fs;
512         int             print_badblocks = 0;
513         blk64_t         use_superblock = 0;
514         int             use_blocksize = 0;
515         int             image_dump = 0;
516         int             force = 0;
517         int             flags;
518         int             header_only = 0;
519         int             c;
520
521 #ifdef ENABLE_NLS
522         setlocale(LC_MESSAGES, "");
523         setlocale(LC_CTYPE, "");
524         bindtextdomain(NLS_CAT_NAME, LOCALEDIR);
525         textdomain(NLS_CAT_NAME);
526         set_com_err_gettext(gettext);
527 #endif
528         add_error_table(&et_ext2_error_table);
529         fprintf (stderr, "dumpe2fs %s (%s)\n", E2FSPROGS_VERSION,
530                  E2FSPROGS_DATE);
531         if (argc && *argv)
532                 program_name = *argv;
533
534         while ((c = getopt (argc, argv, "bfhixVo:")) != EOF) {
535                 switch (c) {
536                 case 'b':
537                         print_badblocks++;
538                         break;
539                 case 'f':
540                         force++;
541                         break;
542                 case 'h':
543                         header_only++;
544                         break;
545                 case 'i':
546                         image_dump++;
547                         break;
548                 case 'o':
549                         parse_extended_opts(optarg, &use_superblock,
550                                             &use_blocksize);
551                         break;
552                 case 'V':
553                         /* Print version number and exit */
554                         fprintf(stderr, _("\tUsing %s\n"),
555                                 error_message(EXT2_ET_BASE));
556                         exit(0);
557                 case 'x':
558                         hex_format++;
559                         break;
560                 default:
561                         usage();
562                 }
563         }
564         if (optind > argc - 1)
565                 usage();
566         device_name = argv[optind++];
567         flags = EXT2_FLAG_JOURNAL_DEV_OK | EXT2_FLAG_SOFTSUPP_FEATURES | EXT2_FLAG_64BITS;
568         if (force)
569                 flags |= EXT2_FLAG_FORCE;
570         if (image_dump)
571                 flags |= EXT2_FLAG_IMAGE_FILE;
572
573         if (use_superblock && !use_blocksize) {
574                 for (use_blocksize = EXT2_MIN_BLOCK_SIZE;
575                      use_blocksize <= EXT2_MAX_BLOCK_SIZE;
576                      use_blocksize *= 2) {
577                         retval = ext2fs_open (device_name, flags,
578                                               use_superblock,
579                                               use_blocksize, unix_io_manager,
580                                               &fs);
581                         if (!retval)
582                                 break;
583                 }
584         } else
585                 retval = ext2fs_open (device_name, flags, use_superblock,
586                                       use_blocksize, unix_io_manager, &fs);
587         if (retval) {
588                 com_err (program_name, retval, _("while trying to open %s"),
589                          device_name);
590                 printf (_("Couldn't find valid filesystem superblock.\n"));
591                 exit (1);
592         }
593         fs->default_bitmap_type = EXT2FS_BMAP64_RBTREE;
594         if (fs->super->s_feature_incompat & EXT4_FEATURE_INCOMPAT_64BIT)
595                 blocks64 = 1;
596         if (print_badblocks) {
597                 list_bad_blocks(fs, 1);
598         } else {
599                 list_super (fs->super);
600                 if (fs->super->s_feature_incompat &
601                       EXT3_FEATURE_INCOMPAT_JOURNAL_DEV) {
602                         print_journal_information(fs);
603                         ext2fs_close(fs);
604                         exit(0);
605                 }
606                 if ((fs->super->s_feature_compat &
607                      EXT3_FEATURE_COMPAT_HAS_JOURNAL) &&
608                     (fs->super->s_journal_inum != 0))
609                         print_inline_journal_information(fs);
610                 list_bad_blocks(fs, 0);
611                 if (header_only) {
612                         ext2fs_close (fs);
613                         exit (0);
614                 }
615                 retval = ext2fs_read_bitmaps (fs);
616                 list_desc (fs);
617                 if (retval) {
618                         printf(_("\n%s: %s: error reading bitmaps: %s\n"),
619                                program_name, device_name,
620                                error_message(retval));
621                 }
622         }
623         ext2fs_close (fs);
624         remove_error_table(&et_ext2_error_table);
625         exit (0);
626 }