]> git.ipfire.org Git - thirdparty/e2fsprogs.git/blobdiff - debugfs/debugfs.c
debugfs: add filefrag command
[thirdparty/e2fsprogs.git] / debugfs / debugfs.c
index 8261d184317011bed41be25173a4149f3e5d5e10..6a768f0fadc67fcfd1fa02bf5f98c48471c11c56 100644 (file)
@@ -4,10 +4,11 @@
  *
  * Copyright (C) 1993 Theodore Ts'o.  This file may be redistributed
  * under the terms of the GNU Public License.
- * 
+ *
  * Modifications by Robert Sanders <gt8134b@prism.gatech.edu>
  */
 
+#include "config.h"
 #include <stdio.h>
 #include <unistd.h>
 #include <stdlib.h>
@@ -16,7 +17,7 @@
 #include <time.h>
 #ifdef HAVE_GETOPT_H
 #include <getopt.h>
-#else 
+#else
 extern int optind;
 extern char *optarg;
 #endif
@@ -36,14 +37,17 @@ extern char *optarg;
 #include <ext2fs/ext2_ext_attr.h>
 
 #include "../version.h"
+#include "jfs_user.h"
 
 extern ss_request_table debug_cmds;
+ss_request_table *extra_cmds;
+const char *debug_prog_name;
 
 ext2_filsys    current_fs = NULL;
 ext2_ino_t     root, cwd;
 
-static void open_filesystem(char *device, int open_flags, blk_t superblock,
-                           blk_t blocksize, int catastrophic, 
+static void open_filesystem(char *device, int open_flags, blk64_t superblock,
+                           blk64_t blocksize, int catastrophic,
                            char *data_filename)
 {
        int     retval;
@@ -57,7 +61,7 @@ static void open_filesystem(char *device, int open_flags, blk_t superblock,
 
        if (data_filename) {
                if ((open_flags & EXT2_FLAG_IMAGE_FILE) == 0) {
-                       com_err(device, 0, 
+                       com_err(device, 0,
                                "The -d option is only valid when reading an e2image file");
                        current_fs = NULL;
                        return;
@@ -75,7 +79,9 @@ static void open_filesystem(char *device, int open_flags, blk_t superblock,
                        "opening read-only because of catastrophic mode");
                open_flags &= ~EXT2_FLAG_RW;
        }
-       
+       if (catastrophic)
+               open_flags |= EXT2_FLAG_SKIP_MMP;
+
        retval = ext2fs_open(device, open_flags, superblock, blocksize,
                             unix_io_manager, &current_fs);
        if (retval) {
@@ -102,7 +108,7 @@ static void open_filesystem(char *device, int open_flags, blk_t superblock,
        if (data_io) {
                retval = ext2fs_set_data_io(current_fs, data_io);
                if (retval) {
-                       com_err(device, retval, 
+                       com_err(device, retval,
                                "while setting data source");
                        goto errout;
                }
@@ -122,19 +128,23 @@ void do_open_filesys(int argc, char **argv)
 {
        int     c, err;
        int     catastrophic = 0;
-       blk_t   superblock = 0;
-       blk_t   blocksize = 0;
-       int     open_flags = EXT2_FLAG_SOFTSUPP_FEATURES;
+       blk64_t superblock = 0;
+       blk64_t blocksize = 0;
+       int     open_flags = EXT2_FLAG_SOFTSUPP_FEATURES | EXT2_FLAG_64BITS; 
        char    *data_filename = 0;
-       
+
        reset_getopt();
-       while ((c = getopt (argc, argv, "iwfecb:s:d:")) != EOF) {
+       while ((c = getopt (argc, argv, "iwfecb:s:d:D")) != EOF) {
                switch (c) {
                case 'i':
                        open_flags |= EXT2_FLAG_IMAGE_FILE;
                        break;
                case 'w':
+#ifdef READ_ONLY
+                       goto print_usage;
+#else
                        open_flags |= EXT2_FLAG_RW;
+#endif /* READ_ONLY */
                        break;
                case 'f':
                        open_flags |= EXT2_FLAG_FORCE;
@@ -148,6 +158,9 @@ void do_open_filesys(int argc, char **argv)
                case 'd':
                        data_filename = optarg;
                        break;
+               case 'D':
+                       open_flags |= EXT2_FLAG_DIRECT_IO;
+                       break;
                case 'b':
                        blocksize = parse_ulong(optarg, argv[0],
                                                "block size", &err);
@@ -170,13 +183,16 @@ void do_open_filesys(int argc, char **argv)
        if (check_fs_not_open(argv[0]))
                return;
        open_filesystem(argv[optind], open_flags,
-                       superblock, blocksize, catastrophic, 
+                       superblock, blocksize, catastrophic,
                        data_filename);
        return;
 
 print_usage:
-       fprintf(stderr, "%s: Usage: open [-s superblock] [-b blocksize] "
-               "[-c] [-w] <device>\n", argv[0]);
+       fprintf(stderr, "%s: Usage: open [-s superblock] [-b blocksize] [-c] "
+#ifndef READ_ONLY
+               "[-w] "
+#endif
+               "<device>\n", argv[0]);
 }
 
 void do_lcd(int argc, char **argv)
@@ -197,7 +213,7 @@ void do_lcd(int argc, char **argv)
 static void close_filesystem(NOARGS)
 {
        int     retval;
-       
+
        if (current_fs->flags & EXT2_FLAG_IB_DIRTY) {
                retval = ext2fs_write_inode_bitmap(current_fs);
                if (retval)
@@ -217,24 +233,45 @@ static void close_filesystem(NOARGS)
 
 void do_close_filesys(int argc, char **argv)
 {
-       if (common_args_process(argc, argv, 1, 1, "close_filesys", "", 0))
+       int     c;
+
+       if (check_fs_open(argv[0]))
                return;
+
+       reset_getopt();
+       while ((c = getopt (argc, argv, "a")) != EOF) {
+               switch (c) {
+               case 'a':
+                       current_fs->flags &= ~EXT2_FLAG_MASTER_SB_ONLY;
+                       break;
+               default:
+                       goto print_usage;
+               }
+       }
+
+       if (argc > optind) {
+       print_usage:
+               com_err(0, 0, "Usage: close_filesys [-a]");
+               return;
+       }
+
        close_filesystem();
 }
 
+#ifndef READ_ONLY
 void do_init_filesys(int argc, char **argv)
 {
        struct ext2_super_block param;
        errcode_t       retval;
        int             err;
-       
+
        if (common_args_process(argc, argv, 3, 3, "initialize",
                                "<device> <blocksize>", CHECK_FS_NOTOPEN))
                return;
 
        memset(&param, 0, sizeof(struct ext2_super_block));
-       param.s_blocks_count = parse_ulong(argv[2], argv[0],
-                                          "blocks count", &err);
+       ext2fs_blocks_count_set(&param, parse_ulong(argv[2], argv[0],
+                                                   "blocks count", &err));
        if (err)
                return;
        retval = ext2fs_initialize(argv[1], 0, &param,
@@ -247,6 +284,7 @@ void do_init_filesys(int argc, char **argv)
        root = cwd = EXT2_ROOT_INO;
        return;
 }
+#endif /* READ_ONLY */
 
 static void print_features(struct ext2_super_block * s, FILE *f)
 {
@@ -267,10 +305,10 @@ static void print_features(struct ext2_super_block * s, FILE *f)
        fputs("\n", f);
 }
 
-static void print_bg_opts(struct ext2_group_desc *gdp, int mask,
+static void print_bg_opts(ext2_filsys fs, dgrp_t group, int mask,
                          const char *str, int *first, FILE *f)
 {
-       if (gdp->bg_flags & mask) {
+       if (ext2fs_bg_flags_test(fs, group, mask)) {
                if (*first) {
                        fputs("           [", f);
                        *first = 0;
@@ -282,11 +320,11 @@ static void print_bg_opts(struct ext2_group_desc *gdp, int mask,
 
 void do_show_super_stats(int argc, char *argv[])
 {
+       const char *units ="block";
        dgrp_t  i;
        FILE    *out;
-       struct ext2_group_desc *gdp;
        int     c, header_only = 0;
-       int     numdirs = 0, first;
+       int     numdirs = 0, first, gdt_csum;
 
        reset_getopt();
        while ((c = getopt (argc, argv, "h")) != EOF) {
@@ -305,38 +343,56 @@ void do_show_super_stats(int argc, char *argv[])
                return;
        out = open_pager();
 
+       if (EXT2_HAS_RO_COMPAT_FEATURE(current_fs->super,
+                                      EXT4_FEATURE_RO_COMPAT_BIGALLOC))
+               units = "cluster";
+
        list_super2(current_fs->super, out);
        for (i=0; i < current_fs->group_desc_count; i++)
-               numdirs += current_fs->group_desc[i].bg_used_dirs_count;
+               numdirs += ext2fs_bg_used_dirs_count(current_fs, i);
        fprintf(out, "Directories:              %d\n", numdirs);
-       
+
        if (header_only) {
                close_pager(out);
                return;
        }
-       
-       gdp = &current_fs->group_desc[0];
-       for (i = 0; i < current_fs->group_desc_count; i++, gdp++) {
-               fprintf(out, " Group %2d: block bitmap at %u, "
-                       "inode bitmap at %u, "
-                       "inode table at %u\n"
-                       "           %d free %s, "
-                       "%d free %s, "
-                       "%d used %s\n",
-                       i, gdp->bg_block_bitmap,
-                       gdp->bg_inode_bitmap, gdp->bg_inode_table,
-                       gdp->bg_free_blocks_count,
-                       gdp->bg_free_blocks_count != 1 ? "blocks" : "block",
-                       gdp->bg_free_inodes_count,
-                       gdp->bg_free_inodes_count != 1 ? "inodes" : "inode",
-                       gdp->bg_used_dirs_count,
-                       gdp->bg_used_dirs_count != 1 ? "directories"
-                               : "directory");
+
+       gdt_csum = EXT2_HAS_RO_COMPAT_FEATURE(current_fs->super,
+                                             EXT4_FEATURE_RO_COMPAT_GDT_CSUM);
+       for (i = 0; i < current_fs->group_desc_count; i++) {
+               fprintf(out, " Group %2d: block bitmap at %llu, "
+                       "inode bitmap at %llu, "
+                       "inode table at %llu\n"
+                       "           %u free %s%s, "
+                       "%u free %s, "
+                       "%u used %s%s",
+                       i, ext2fs_block_bitmap_loc(current_fs, i),
+                       ext2fs_inode_bitmap_loc(current_fs, i),
+                       ext2fs_inode_table_loc(current_fs, i),
+                       ext2fs_bg_free_blocks_count(current_fs, i), units,
+                       ext2fs_bg_free_blocks_count(current_fs, i) != 1 ?
+                       "s" : "",
+                       ext2fs_bg_free_inodes_count(current_fs, i),
+                       ext2fs_bg_free_inodes_count(current_fs, i) != 1 ?
+                       "inodes" : "inode",
+                       ext2fs_bg_used_dirs_count(current_fs, i),
+                       ext2fs_bg_used_dirs_count(current_fs, i) != 1 ? "directories"
+                               : "directory", gdt_csum ? ", " : "\n");
+               if (gdt_csum)
+                       fprintf(out, "%u unused %s\n",
+                               ext2fs_bg_itable_unused(current_fs, i),
+                               ext2fs_bg_itable_unused(current_fs, i) != 1 ?
+                               "inodes" : "inode");
                first = 1;
-               print_bg_opts(gdp, EXT2_BG_INODE_UNINIT, "Inode not init",
+               print_bg_opts(current_fs, i, EXT2_BG_INODE_UNINIT, "Inode not init",
                              &first, out);
-               print_bg_opts(gdp, EXT2_BG_BLOCK_UNINIT, "Block not init",
+               print_bg_opts(current_fs, i, EXT2_BG_BLOCK_UNINIT, "Block not init",
                              &first, out);
+               if (gdt_csum) {
+                       fprintf(out, "%sChecksum 0x%04x",
+                               first ? "           [":", ", ext2fs_bg_checksum(current_fs, i));
+                       first = 0;
+               }
                if (!first)
                        fputs("]\n", out);
        }
@@ -346,7 +402,8 @@ print_usage:
        fprintf(stderr, "%s: Usage: show_super [-h]\n", argv[0]);
 }
 
-void do_dirty_filesys(int argc EXT2FS_ATTR((unused)), 
+#ifndef READ_ONLY
+void do_dirty_filesys(int argc EXT2FS_ATTR((unused)),
                      char **argv EXT2FS_ATTR((unused)))
 {
        if (check_fs_open(argv[0]))
@@ -360,11 +417,12 @@ void do_dirty_filesys(int argc EXT2FS_ATTR((unused)),
                current_fs->super->s_state &= ~EXT2_VALID_FS;
        ext2fs_mark_super_dirty(current_fs);
 }
+#endif /* READ_ONLY */
 
 struct list_blocks_struct {
        FILE            *f;
        e2_blkcnt_t     total;
-       blk_t           first_block, last_block;
+       blk64_t         first_block, last_block;
        e2_blkcnt_t     first_bcnt, last_bcnt;
        e2_blkcnt_t     first;
 };
@@ -378,19 +436,19 @@ static void finish_range(struct list_blocks_struct *lb)
        else
                fprintf(lb->f, ", ");
        if (lb->first_block == lb->last_block)
-               fprintf(lb->f, "(%lld):%u",
+               fprintf(lb->f, "(%lld):%llu",
                        (long long)lb->first_bcnt, lb->first_block);
        else
-               fprintf(lb->f, "(%lld-%lld):%u-%u",
+               fprintf(lb->f, "(%lld-%lld):%llu-%llu",
                        (long long)lb->first_bcnt, (long long)lb->last_bcnt,
                        lb->first_block, lb->last_block);
        lb->first_block = 0;
 }
 
-static int list_blocks_proc(ext2_filsys fs EXT2FS_ATTR((unused)), 
-                           blk_t *blocknr, e2_blkcnt_t blockcnt, 
-                           blk_t ref_block EXT2FS_ATTR((unused)),
-                           int ref_offset EXT2FS_ATTR((unused)), 
+static int list_blocks_proc(ext2_filsys fs EXT2FS_ATTR((unused)),
+                           blk64_t *blocknr, e2_blkcnt_t blockcnt,
+                           blk64_t ref_block EXT2FS_ATTR((unused)),
+                           int ref_offset EXT2FS_ATTR((unused)),
                            void *private)
 {
        struct list_blocks_struct *lb = (struct list_blocks_struct *) private;
@@ -424,36 +482,38 @@ static int list_blocks_proc(ext2_filsys fs EXT2FS_ATTR((unused)),
        else
                fprintf(lb->f, ", ");
        if (blockcnt == -1)
-               fprintf(lb->f, "(IND):%u", *blocknr);
+               fprintf(lb->f, "(IND):%llu", (unsigned long long) *blocknr);
        else if (blockcnt == -2)
-               fprintf(lb->f, "(DIND):%u", *blocknr);
+               fprintf(lb->f, "(DIND):%llu", (unsigned long long) *blocknr);
        else if (blockcnt == -3)
-               fprintf(lb->f, "(TIND):%u", *blocknr);
+               fprintf(lb->f, "(TIND):%llu", (unsigned long long) *blocknr);
        return 0;
 }
 
 static void dump_xattr_string(FILE *out, const char *str, int len)
 {
-       int printable = 1;
+       int printable = 0;
        int i;
-       
-       /* check is string printable? */
+
+       /* check: is string "printable enough?" */
        for (i = 0; i < len; i++)
-               if (!isprint(str[i])) {
-                       printable = 0;
-                       break;
-               }
+               if (isprint(str[i]))
+                       printable++;
+
+       if (printable <= len*7/8)
+               printable = 0;
 
        for (i = 0; i < len; i++)
                if (printable)
-                       fprintf(out, "%c", (unsigned char)str[i]);
+                       fprintf(out, isprint(str[i]) ? "%c" : "\\%03o",
+                               (unsigned char)str[i]);
                else
                        fprintf(out, "%02x ", (unsigned char)str[i]);
 }
 
-static void internal_dump_inode_extra(FILE *out, 
+static void internal_dump_inode_extra(FILE *out,
                                      const char *prefix EXT2FS_ATTR((unused)),
-                                     ext2_ino_t inode_num EXT2FS_ATTR((unused)), 
+                                     ext2_ino_t inode_num EXT2FS_ATTR((unused)),
                                      struct ext2_inode_large *inode)
 {
        struct ext2_ext_attr_entry *entry;
@@ -487,7 +547,7 @@ static void internal_dump_inode_extra(FILE *out,
                                return;
                        }
                        fprintf(out, "  ");
-                       dump_xattr_string(out, EXT2_EXT_ATTR_NAME(entry), 
+                       dump_xattr_string(out, EXT2_EXT_ATTR_NAME(entry),
                                          entry->e_name_len);
                        fprintf(out, " = \"");
                        dump_xattr_string(out, start + entry->e_value_offs,
@@ -507,14 +567,144 @@ static void dump_blocks(FILE *f, const char *prefix, ext2_ino_t inode)
        lb.first_block = 0;
        lb.f = f;
        lb.first = 1;
-       ext2fs_block_iterate2(current_fs, inode, 0, NULL,
-                            list_blocks_proc, (void *)&lb);
+       ext2fs_block_iterate3(current_fs, inode, BLOCK_FLAG_READ_ONLY, NULL,
+                             list_blocks_proc, (void *)&lb);
        finish_range(&lb);
        if (lb.total)
                fprintf(f, "\n%sTOTAL: %lld\n", prefix, (long long)lb.total);
        fprintf(f,"\n");
 }
 
+static int int_log10(unsigned long long arg)
+{
+       int     l = 0;
+
+       arg = arg / 10;
+       while (arg) {
+               l++;
+               arg = arg / 10;
+       }
+       return l;
+}
+
+#define DUMP_LEAF_EXTENTS      0x01
+#define DUMP_NODE_EXTENTS      0x02
+#define DUMP_EXTENT_TABLE      0x04
+
+static void dump_extents(FILE *f, const char *prefix, ext2_ino_t ino,
+                        int flags, int logical_width, int physical_width)
+{
+       ext2_extent_handle_t    handle;
+       struct ext2fs_extent    extent;
+       struct ext2_extent_info info;
+       int                     op = EXT2_EXTENT_ROOT;
+       unsigned int            printed = 0;
+       errcode_t               errcode;
+
+       errcode = ext2fs_extent_open(current_fs, ino, &handle);
+       if (errcode)
+               return;
+
+       if (flags & DUMP_EXTENT_TABLE)
+               fprintf(f, "Level Entries %*s %*s Length Flags\n",
+                       (logical_width*2)+3, "Logical",
+                       (physical_width*2)+3, "Physical");
+       else
+               fprintf(f, "%sEXTENTS:\n%s", prefix, prefix);
+
+       while (1) {
+               errcode = ext2fs_extent_get(handle, op, &extent);
+
+               if (errcode)
+                       break;
+
+               op = EXT2_EXTENT_NEXT;
+
+               if (extent.e_flags & EXT2_EXTENT_FLAGS_SECOND_VISIT)
+                       continue;
+
+               if (extent.e_flags & EXT2_EXTENT_FLAGS_LEAF) {
+                       if ((flags & DUMP_LEAF_EXTENTS) == 0)
+                               continue;
+               } else {
+                       if ((flags & DUMP_NODE_EXTENTS) == 0)
+                               continue;
+               }
+
+               errcode = ext2fs_extent_get_info(handle, &info);
+               if (errcode)
+                       continue;
+
+               if (!(extent.e_flags & EXT2_EXTENT_FLAGS_LEAF)) {
+                       if (extent.e_flags & EXT2_EXTENT_FLAGS_SECOND_VISIT)
+                               continue;
+
+                       if (flags & DUMP_EXTENT_TABLE) {
+                               fprintf(f, "%2d/%2d %3d/%3d %*llu - %*llu "
+                                       "%*llu%*s %6u\n",
+                                       info.curr_level, info.max_depth,
+                                       info.curr_entry, info.num_entries,
+                                       logical_width,
+                                       extent.e_lblk,
+                                       logical_width,
+                                       extent.e_lblk + (extent.e_len - 1),
+                                       physical_width,
+                                       extent.e_pblk,
+                                       physical_width+3, "", extent.e_len);
+                               continue;
+                       }
+
+                       fprintf(f, "%s(ETB%d):%lld",
+                               printed ? ", " : "", info.curr_level,
+                               extent.e_pblk);
+                       printed = 1;
+                       continue;
+               }
+
+               if (flags & DUMP_EXTENT_TABLE) {
+                       fprintf(f, "%2d/%2d %3d/%3d %*llu - %*llu "
+                               "%*llu - %*llu %6u %s\n",
+                               info.curr_level, info.max_depth,
+                               info.curr_entry, info.num_entries,
+                               logical_width,
+                               extent.e_lblk,
+                               logical_width,
+                               extent.e_lblk + (extent.e_len - 1),
+                               physical_width,
+                               extent.e_pblk,
+                               physical_width,
+                               extent.e_pblk + (extent.e_len - 1),
+                               extent.e_len,
+                               extent.e_flags & EXT2_EXTENT_FLAGS_UNINIT ?
+                                       "Uninit" : "");
+                       continue;
+               }
+
+               if (extent.e_len == 0)
+                       continue;
+               else if (extent.e_len == 1)
+                       fprintf(f,
+                               "%s(%lld%s):%lld",
+                               printed ? ", " : "",
+                               extent.e_lblk,
+                               extent.e_flags & EXT2_EXTENT_FLAGS_UNINIT ?
+                               "[u]" : "",
+                               extent.e_pblk);
+               else
+                       fprintf(f,
+                               "%s(%lld-%lld%s):%lld-%lld",
+                               printed ? ", " : "",
+                               extent.e_lblk,
+                               extent.e_lblk + (extent.e_len - 1),
+                               extent.e_flags & EXT2_EXTENT_FLAGS_UNINIT ?
+                                       "[u]" : "",
+                               extent.e_pblk,
+                               extent.e_pblk + (extent.e_len - 1));
+               printed = 1;
+       }
+       if (printed)
+               fprintf(f, "\n");
+}
 
 void internal_dump_inode(FILE *out, const char *prefix,
                         ext2_ino_t inode_num, struct ext2_inode *inode,
@@ -523,7 +713,13 @@ void internal_dump_inode(FILE *out, const char *prefix,
        const char *i_type;
        char frag, fsize;
        int os = current_fs->super->s_creator_os;
-       
+       struct ext2_inode_large *large_inode;
+       int is_large_inode = 0;
+
+       if (EXT2_INODE_SIZE(current_fs->super) > EXT2_GOOD_OLD_INODE_SIZE)
+               is_large_inode = 1;
+       large_inode = (struct ext2_inode_large *) inode;
+
        if (LINUX_S_ISDIR(inode->i_mode)) i_type = "directory";
        else if (LINUX_S_ISREG(inode->i_mode)) i_type = "regular";
        else if (LINUX_S_ISLNK(inode->i_mode)) i_type = "symlink";
@@ -533,17 +729,21 @@ void internal_dump_inode(FILE *out, const char *prefix,
        else if (LINUX_S_ISSOCK(inode->i_mode)) i_type = "socket";
        else i_type = "bad type";
        fprintf(out, "%sInode: %u   Type: %s    ", prefix, inode_num, i_type);
-       fprintf(out, "%sMode:  %04o   Flags: 0x%x   Generation: %u\n",
-               prefix, 
-               inode->i_mode & 0777, inode->i_flags, inode->i_generation);
+       fprintf(out, "%sMode:  %04o   Flags: 0x%x\n",
+               prefix, inode->i_mode & 0777, inode->i_flags);
+       if (is_large_inode && large_inode->i_extra_isize >= 24) {
+               fprintf(out, "%sGeneration: %u    Version: 0x%08x:%08x\n",
+                       prefix, inode->i_generation, large_inode->i_version_hi,
+                       inode->osd1.linux1.l_i_version);
+       } else {
+               fprintf(out, "%sGeneration: %u    Version: 0x%08x\n", prefix,
+                       inode->i_generation, inode->osd1.linux1.l_i_version);
+       }
        fprintf(out, "%sUser: %5d   Group: %5d   Size: ",
                prefix, inode_uid(*inode), inode_gid(*inode));
-       if (LINUX_S_ISREG(inode->i_mode)) {
-               unsigned long long i_size = (inode->i_size |
-                                   ((unsigned long long)inode->i_size_high << 32));
-
-               fprintf(out, "%llu\n", i_size);
-       } else
+       if (LINUX_S_ISREG(inode->i_mode))
+               fprintf(out, "%llu\n", EXT2_I_SIZE(inode));
+       else
                fprintf(out, "%d\n", inode->i_size);
        if (os == EXT2_OS_HURD)
                fprintf(out,
@@ -552,14 +752,16 @@ void internal_dump_inode(FILE *out, const char *prefix,
                        inode->i_file_acl, LINUX_S_ISDIR(inode->i_mode) ? inode->i_dir_acl : 0,
                        inode->osd1.hurd1.h_i_translator);
        else
-               fprintf(out, "%sFile ACL: %d    Directory ACL: %d\n",
+               fprintf(out, "%sFile ACL: %llu    Directory ACL: %d\n",
                        prefix,
-                       inode->i_file_acl, LINUX_S_ISDIR(inode->i_mode) ? inode->i_dir_acl : 0);
-       if (os == EXT2_OS_LINUX) 
+                       inode->i_file_acl | ((long long)
+                               (inode->osd2.linux2.l_i_file_acl_high) << 32),
+                       LINUX_S_ISDIR(inode->i_mode) ? inode->i_dir_acl : 0);
+       if (os == EXT2_OS_LINUX)
                fprintf(out, "%sLinks: %d   Blockcount: %llu\n",
-                       prefix, inode->i_links_count, 
-                       (((unsigned long long) 
-                         inode->osd2.linux2.l_i_blocks_hi << 32)) + 
+                       prefix, inode->i_links_count,
+                       (((unsigned long long)
+                         inode->osd2.linux2.l_i_blocks_hi << 32)) +
                        inode->i_blocks);
        else
                fprintf(out, "%sLinks: %d   Blockcount: %u\n",
@@ -574,13 +776,28 @@ void internal_dump_inode(FILE *out, const char *prefix,
        }
        fprintf(out, "%sFragment:  Address: %d    Number: %d    Size: %d\n",
                prefix, inode->i_faddr, frag, fsize);
-       fprintf(out, "%sctime: 0x%08x -- %s", prefix, inode->i_ctime,
-               time_to_string(inode->i_ctime));
-       fprintf(out, "%satime: 0x%08x -- %s", prefix, inode->i_atime,
-               time_to_string(inode->i_atime));
-       fprintf(out, "%smtime: 0x%08x -- %s", prefix, inode->i_mtime,
-               time_to_string(inode->i_mtime));
-       if (inode->i_dtime) 
+       if (is_large_inode && large_inode->i_extra_isize >= 24) {
+               fprintf(out, "%s ctime: 0x%08x:%08x -- %s", prefix,
+                       inode->i_ctime, large_inode->i_ctime_extra,
+                       time_to_string(inode->i_ctime));
+               fprintf(out, "%s atime: 0x%08x:%08x -- %s", prefix,
+                       inode->i_atime, large_inode->i_atime_extra,
+                       time_to_string(inode->i_atime));
+               fprintf(out, "%s mtime: 0x%08x:%08x -- %s", prefix,
+                       inode->i_mtime, large_inode->i_mtime_extra,
+                       time_to_string(inode->i_mtime));
+               fprintf(out, "%scrtime: 0x%08x:%08x -- %s", prefix,
+                       large_inode->i_crtime, large_inode->i_crtime_extra,
+                       time_to_string(large_inode->i_crtime));
+       } else {
+               fprintf(out, "%sctime: 0x%08x -- %s", prefix, inode->i_ctime,
+                       time_to_string(inode->i_ctime));
+               fprintf(out, "%satime: 0x%08x -- %s", prefix, inode->i_atime,
+                       time_to_string(inode->i_atime));
+               fprintf(out, "%smtime: 0x%08x -- %s", prefix, inode->i_mtime,
+                       time_to_string(inode->i_mtime));
+       }
+       if (inode->i_dtime)
          fprintf(out, "%sdtime: 0x%08x -- %s", prefix, inode->i_dtime,
                  time_to_string(inode->i_dtime));
        if (EXT2_INODE_SIZE(current_fs->super) > EXT2_GOOD_OLD_INODE_SIZE)
@@ -599,21 +816,25 @@ void internal_dump_inode(FILE *out, const char *prefix,
                        devnote = "";
                } else {
                        major = (inode->i_block[1] & 0xfff00) >> 8;
-                       minor = ((inode->i_block[1] & 0xff) | 
+                       minor = ((inode->i_block[1] & 0xff) |
                                 ((inode->i_block[1] >> 12) & 0xfff00));
                        devnote = "(New-style) ";
                }
-               fprintf(out, "%sDevice major/minor number: %02d:%02d (hex %02x:%02x)\n", 
+               fprintf(out, "%sDevice major/minor number: %02d:%02d (hex %02x:%02x)\n",
                        devnote, major, minor, major, minor);
+       } else if (do_dump_blocks) {
+               if (inode->i_flags & EXT4_EXTENTS_FL)
+                       dump_extents(out, prefix, inode_num,
+                                    DUMP_LEAF_EXTENTS|DUMP_NODE_EXTENTS, 0, 0);
+               else
+                       dump_blocks(out, prefix, inode_num);
        }
-       else if (do_dump_blocks)
-               dump_blocks(out, prefix, inode_num);
 }
 
 static void dump_inode(ext2_ino_t inode_num, struct ext2_inode *inode)
 {
        FILE    *out;
-       
+
        out = open_pager();
        internal_dump_inode(out, "", inode_num, inode, 1);
        close_pager(out);
@@ -650,6 +871,94 @@ void do_stat(int argc, char *argv[])
        return;
 }
 
+void do_dump_extents(int argc, char **argv)
+{
+       struct ext2_inode inode;
+       ext2_ino_t      ino;
+       FILE            *out;
+       int             c, flags = 0;
+       int             logical_width;
+       int             physical_width;
+
+       reset_getopt();
+       while ((c = getopt(argc, argv, "nl")) != EOF) {
+               switch (c) {
+               case 'n':
+                       flags |= DUMP_NODE_EXTENTS;
+                       break;
+               case 'l':
+                       flags |= DUMP_LEAF_EXTENTS;
+                       break;
+               }
+       }
+
+       if (argc != optind + 1) {
+               com_err(0, 0, "Usage: dump_extents [-n] [-l] file");
+               return;
+       }
+
+       if (flags == 0)
+               flags = DUMP_NODE_EXTENTS | DUMP_LEAF_EXTENTS;
+       flags |= DUMP_EXTENT_TABLE;
+
+       if (check_fs_open(argv[0]))
+               return;
+
+       ino = string_to_inode(argv[optind]);
+       if (ino == 0)
+               return;
+
+       if (debugfs_read_inode(ino, &inode, argv[0]))
+               return;
+
+       if ((inode.i_flags & EXT4_EXTENTS_FL) == 0) {
+               fprintf(stderr, "%s: does not uses extent block maps\n",
+                       argv[optind]);
+               return;
+       }
+
+       logical_width = int_log10((EXT2_I_SIZE(&inode)+current_fs->blocksize-1)/
+                                 current_fs->blocksize) + 1;
+       if (logical_width < 5)
+               logical_width = 5;
+       physical_width = int_log10(ext2fs_blocks_count(current_fs->super)) + 1;
+       if (physical_width < 5)
+               physical_width = 5;
+
+       out = open_pager();
+       dump_extents(out, "", ino, flags, logical_width, physical_width);
+       close_pager(out);
+       return;
+}
+
+static int print_blocks_proc(ext2_filsys fs EXT2FS_ATTR((unused)),
+                            blk64_t *blocknr,
+                            e2_blkcnt_t blockcnt,
+                            blk64_t ref_block EXT2FS_ATTR((unused)),
+                            int ref_offset EXT2FS_ATTR((unused)),
+                            void *private EXT2FS_ATTR((unused)))
+{
+       printf("%llu ", *blocknr);
+       return 0;
+}
+
+void do_blocks(int argc, char *argv[])
+{
+       ext2_ino_t      inode;
+
+       if (check_fs_open(argv[0]))
+               return;
+
+       if (common_inode_args_process(argc, argv, &inode, 0)) {
+               return;
+       }
+
+       ext2fs_block_iterate3(current_fs, inode, BLOCK_FLAG_READ_ONLY, NULL,
+                             print_blocks_proc, NULL);
+       fputc('\n', stdout);
+       return;
+}
+
 void do_chroot(int argc, char *argv[])
 {
        ext2_ino_t inode;
@@ -666,6 +975,7 @@ void do_chroot(int argc, char *argv[])
        root = inode;
 }
 
+#ifndef READ_ONLY
 void do_clri(int argc, char *argv[])
 {
        ext2_ino_t inode;
@@ -689,9 +999,9 @@ void do_freei(int argc, char *argv[])
                                      CHECK_FS_RW | CHECK_FS_BITMAPS))
                return;
 
-       if (!ext2fs_test_inode_bitmap(current_fs->inode_map,inode))
+       if (!ext2fs_test_inode_bitmap2(current_fs->inode_map,inode))
                com_err(argv[0], 0, "Warning: inode already clear");
-       ext2fs_unmark_inode_bitmap(current_fs->inode_map,inode);
+       ext2fs_unmark_inode_bitmap2(current_fs->inode_map,inode);
        ext2fs_mark_ib_dirty(current_fs);
 }
 
@@ -703,11 +1013,12 @@ void do_seti(int argc, char *argv[])
                                      CHECK_FS_RW | CHECK_FS_BITMAPS))
                return;
 
-       if (ext2fs_test_inode_bitmap(current_fs->inode_map,inode))
+       if (ext2fs_test_inode_bitmap2(current_fs->inode_map,inode))
                com_err(argv[0], 0, "Warning: inode already set");
-       ext2fs_mark_inode_bitmap(current_fs->inode_map,inode);
+       ext2fs_mark_inode_bitmap2(current_fs->inode_map,inode);
        ext2fs_mark_ib_dirty(current_fs);
 }
+#endif /* READ_ONLY */
 
 void do_testi(int argc, char *argv[])
 {
@@ -716,26 +1027,27 @@ void do_testi(int argc, char *argv[])
        if (common_inode_args_process(argc, argv, &inode, CHECK_FS_BITMAPS))
                return;
 
-       if (ext2fs_test_inode_bitmap(current_fs->inode_map,inode))
+       if (ext2fs_test_inode_bitmap2(current_fs->inode_map,inode))
                printf("Inode %u is marked in use\n", inode);
        else
                printf("Inode %u is not in use\n", inode);
 }
 
+#ifndef READ_ONLY
 void do_freeb(int argc, char *argv[])
 {
-       blk_t block;
-       blk_t count = 1;
+       blk64_t block;
+       blk64_t count = 1;
 
        if (common_block_args_process(argc, argv, &block, &count))
                return;
        if (check_fs_read_write(argv[0]))
                return;
        while (count-- > 0) {
-               if (!ext2fs_test_block_bitmap(current_fs->block_map,block))
-                       com_err(argv[0], 0, "Warning: block %u already clear",
+               if (!ext2fs_test_block_bitmap2(current_fs->block_map,block))
+                       com_err(argv[0], 0, "Warning: block %llu already clear",
                                block);
-               ext2fs_unmark_block_bitmap(current_fs->block_map,block);
+               ext2fs_unmark_block_bitmap2(current_fs->block_map,block);
                block++;
        }
        ext2fs_mark_bb_dirty(current_fs);
@@ -743,39 +1055,41 @@ void do_freeb(int argc, char *argv[])
 
 void do_setb(int argc, char *argv[])
 {
-       blk_t block;
-       blk_t count = 1;
+       blk64_t block;
+       blk64_t count = 1;
 
        if (common_block_args_process(argc, argv, &block, &count))
                return;
        if (check_fs_read_write(argv[0]))
                return;
        while (count-- > 0) {
-               if (ext2fs_test_block_bitmap(current_fs->block_map,block))
-                       com_err(argv[0], 0, "Warning: block %u already set",
+               if (ext2fs_test_block_bitmap2(current_fs->block_map,block))
+                       com_err(argv[0], 0, "Warning: block %llu already set",
                                block);
-               ext2fs_mark_block_bitmap(current_fs->block_map,block);
+               ext2fs_mark_block_bitmap2(current_fs->block_map,block);
                block++;
        }
        ext2fs_mark_bb_dirty(current_fs);
 }
+#endif /* READ_ONLY */
 
 void do_testb(int argc, char *argv[])
 {
-       blk_t block;
-       blk_t count = 1;
+       blk64_t block;
+       blk64_t count = 1;
 
        if (common_block_args_process(argc, argv, &block, &count))
                return;
        while (count-- > 0) {
-               if (ext2fs_test_block_bitmap(current_fs->block_map,block))
-                       printf("Block %u marked in use\n", block);
+               if (ext2fs_test_block_bitmap2(current_fs->block_map,block))
+                       printf("Block %llu marked in use\n", block);
                else
-                       printf("Block %u not in use\n", block);
+                       printf("Block %llu not in use\n", block);
                block++;
        }
 }
 
+#ifndef READ_ONLY
 static void modify_u8(char *com, const char *prompt,
                      const char *format, __u8 *val)
 {
@@ -855,7 +1169,7 @@ void do_modify_inode(int argc, char *argv[])
        const char      *octal_format = "0%o";
        const char      *decimal_format = "%d";
        const char      *unsignedlong_format = "%lu";
-       
+
        if (common_inode_args_process(argc, argv, &inode_num, CHECK_FS_RW))
                return;
 
@@ -863,7 +1177,7 @@ void do_modify_inode(int argc, char *argv[])
 
        if (debugfs_read_inode(inode_num, &inode, argv[1]))
                return;
-       
+
        modify_u16(argv[0], "Mode", octal_format, &inode.i_mode);
        modify_u16(argv[0], "User ID", decimal_format, &inode.i_uid);
        modify_u16(argv[0], "Group ID", decimal_format, &inode.i_gid);
@@ -874,7 +1188,7 @@ void do_modify_inode(int argc, char *argv[])
        modify_u32(argv[0], "Deletion time", decimal_format, &inode.i_dtime);
        modify_u16(argv[0], "Link count", decimal_format, &inode.i_links_count);
        if (os == EXT2_OS_LINUX)
-               modify_u16(argv[0], "Block count high", unsignedlong_format, 
+               modify_u16(argv[0], "Block count high", unsignedlong_format,
                           &inode.osd2.linux2.l_i_blocks_hi);
        modify_u32(argv[0], "Block count", unsignedlong_format, &inode.i_blocks);
        modify_u32(argv[0], "File flags", hex_format, &inode.i_flags);
@@ -891,7 +1205,7 @@ void do_modify_inode(int argc, char *argv[])
        if (os == EXT2_OS_HURD)
                modify_u32(argv[0], "Translator Block",
                            decimal_format, &inode.osd1.hurd1.h_i_translator);
-       
+
        modify_u32(argv[0], "Fragment address", decimal_format, &inode.i_faddr);
        switch (os) {
            case EXT2_OS_HURD:
@@ -911,7 +1225,7 @@ void do_modify_inode(int argc, char *argv[])
                modify_u32(argv[0], buf, decimal_format, &inode.i_block[i]);
        }
        modify_u32(argv[0], "Indirect Block", decimal_format,
-                   &inode.i_block[EXT2_IND_BLOCK]);    
+                   &inode.i_block[EXT2_IND_BLOCK]);
        modify_u32(argv[0], "Double Indirect Block", decimal_format,
                    &inode.i_block[EXT2_DIND_BLOCK]);
        modify_u32(argv[0], "Triple Indirect Block", decimal_format,
@@ -919,12 +1233,13 @@ void do_modify_inode(int argc, char *argv[])
        if (debugfs_write_inode(inode_num, &inode, argv[1]))
                return;
 }
+#endif /* READ_ONLY */
 
 void do_change_working_dir(int argc, char *argv[])
 {
        ext2_ino_t      inode;
        int             retval;
-       
+
        if (common_inode_args_process(argc, argv, &inode, 0))
                return;
 
@@ -941,7 +1256,7 @@ void do_print_working_directory(int argc, char *argv[])
 {
        int     retval;
        char    *pathname = NULL;
-       
+
        if (common_args_process(argc, argv, 1, 1,
                                "print_working_directory", "", 0))
                return;
@@ -981,25 +1296,26 @@ static int ext2_file_type(unsigned int mode)
 
        if (LINUX_S_ISDIR(mode))
                return EXT2_FT_DIR;
-       
+
        if (LINUX_S_ISCHR(mode))
                return EXT2_FT_CHRDEV;
-       
+
        if (LINUX_S_ISBLK(mode))
                return EXT2_FT_BLKDEV;
-       
+
        if (LINUX_S_ISLNK(mode))
                return EXT2_FT_SYMLINK;
 
        if (LINUX_S_ISFIFO(mode))
                return EXT2_FT_FIFO;
-       
+
        if (LINUX_S_ISSOCK(mode))
                return EXT2_FT_SOCK;
-       
+
        return 0;
 }
 
+#ifndef READ_ONLY
 static void make_link(char *sourcename, char *destname)
 {
        ext2_ino_t      ino;
@@ -1021,7 +1337,7 @@ static void make_link(char *sourcename, char *destname)
                base_name = sourcename;
        /*
         * Figure out the destination.  First see if it exists and is
-        * a directory.  
+        * a directory.
         */
        if (! (retval=ext2fs_namei(current_fs, root, cwd, destname, &dir)))
                dest = base_name;
@@ -1045,8 +1361,8 @@ static void make_link(char *sourcename, char *destname)
 
        if (debugfs_read_inode(ino, &inode, sourcename))
                return;
-       
-       retval = ext2fs_link(current_fs, dir, dest, ino, 
+
+       retval = ext2fs_link(current_fs, dir, dest, ino,
                             ext2_file_type(inode.i_mode));
        if (retval)
                com_err("make_link", retval, 0);
@@ -1063,14 +1379,16 @@ void do_link(int argc, char *argv[])
        make_link(argv[1], argv[2]);
 }
 
-static int mark_blocks_proc(ext2_filsys fs, blk_t *blocknr,
-                           int blockcnt EXT2FS_ATTR((unused)), 
+static int mark_blocks_proc(ext2_filsys fs, blk64_t *blocknr,
+                           e2_blkcnt_t blockcnt EXT2FS_ATTR((unused)),
+                           blk64_t ref_block EXT2FS_ATTR((unused)),
+                           int ref_offset EXT2FS_ATTR((unused)),
                            void *private EXT2FS_ATTR((unused)))
 {
-       blk_t   block;
+       blk64_t block;
 
        block = *blocknr;
-       ext2fs_block_alloc_stats(fs, block, +1);
+       ext2fs_block_alloc_stats2(fs, block, +1);
        return 0;
 }
 
@@ -1079,8 +1397,8 @@ void do_undel(int argc, char *argv[])
        ext2_ino_t      ino;
        struct ext2_inode inode;
 
-       if (common_args_process(argc, argv, 3, 3, "undelete",
-                               "<inode_num> <dest_name>",
+       if (common_args_process(argc, argv, 2, 3, "undelete",
+                               "<inode_num> [dest_name]",
                                CHECK_FS_RW | CHECK_FS_BITMAPS))
                return;
 
@@ -1091,14 +1409,14 @@ void do_undel(int argc, char *argv[])
        if (debugfs_read_inode(ino, &inode, argv[1]))
                return;
 
-       if (ext2fs_test_inode_bitmap(current_fs->inode_map, ino)) {
+       if (ext2fs_test_inode_bitmap2(current_fs->inode_map, ino)) {
                com_err(argv[1], 0, "Inode is not marked as deleted");
                return;
        }
 
        /*
         * XXX this function doesn't handle changing the links count on the
-        * parent directory when undeleting a directory.  
+        * parent directory when undeleting a directory.
         */
        inode.i_links_count = LINUX_S_ISDIR(inode.i_mode) ? 2 : 1;
        inode.i_dtime = 0;
@@ -1106,12 +1424,13 @@ void do_undel(int argc, char *argv[])
        if (debugfs_write_inode(ino, &inode, argv[0]))
                return;
 
-       ext2fs_block_iterate(current_fs, ino, 0, NULL,
-                            mark_blocks_proc, NULL);
+       ext2fs_block_iterate3(current_fs, ino, BLOCK_FLAG_READ_ONLY, NULL,
+                             mark_blocks_proc, NULL);
 
        ext2fs_inode_alloc_stats2(current_fs, ino, +1, 0);
 
-       make_link(argv[1], argv[2]);
+       if (argc > 2)
+               make_link(argv[1], argv[2]);
 }
 
 static void unlink_file_by_name(char *filename)
@@ -1119,7 +1438,7 @@ static void unlink_file_by_name(char *filename)
        int             retval;
        ext2_ino_t      dir;
        char            *base_name;
-       
+
        base_name = strrchr(filename, '/');
        if (base_name) {
                *base_name++ = '\0';
@@ -1144,14 +1463,15 @@ void do_unlink(int argc, char *argv[])
 
        unlink_file_by_name(argv[1]);
 }
+#endif /* READ_ONLY */
 
 void do_find_free_block(int argc, char *argv[])
 {
-       blk_t   free_blk, goal;
+       blk64_t free_blk, goal, first_free = 0;
        int             count;
        errcode_t       retval;
        char            *tmp;
-       
+
        if ((argc > 3) || (argc==2 && *argv[1] == '?')) {
                com_err(argv[0], 0, "Usage: find_free_block [count [goal]]");
                return;
@@ -1179,15 +1499,20 @@ void do_find_free_block(int argc, char *argv[])
                goal = current_fs->super->s_first_data_block;
 
        printf("Free blocks found: ");
-       free_blk = goal - 1;    
+       free_blk = goal - 1;
        while (count-- > 0) {
-               retval = ext2fs_new_block(current_fs, free_blk + 1, 0,
-                                         &free_blk);
+               retval = ext2fs_new_block2(current_fs, free_blk + 1, 0,
+                                          &free_blk);
+               if (first_free) {
+                       if (first_free == free_blk)
+                               break;
+               } else
+                       first_free = free_blk;
                if (retval) {
                        com_err("ext2fs_new_block", retval, 0);
                        return;
                } else
-                       printf("%u ", free_blk);
+                       printf("%llu ", free_blk);
        }
        printf("\n");
 }
@@ -1198,7 +1523,7 @@ void do_find_free_inode(int argc, char *argv[])
        int             mode;
        int             retval;
        char            *tmp;
-       
+
        if (argc > 3 || (argc>1 && *argv[1] == '?')) {
                com_err(argv[0], 0, "Usage: find_free_inode [dir] [mode]");
                return;
@@ -1231,6 +1556,7 @@ void do_find_free_inode(int argc, char *argv[])
                printf("Free inode found: %u\n", free_inode);
 }
 
+#ifndef READ_ONLY
 static errcode_t copy_file(int fd, ext2_ino_t newfile)
 {
        ext2_file_t     e2_file;
@@ -1316,6 +1642,7 @@ void do_write(int argc, char *argv[])
                retval = ext2fs_expand_dir(current_fs, cwd);
                if (retval) {
                        com_err(argv[0], retval, "while expanding directory");
+                       close(fd);
                        return;
                }
                retval = ext2fs_link(current_fs, cwd, argv[2], newfile,
@@ -1326,15 +1653,18 @@ void do_write(int argc, char *argv[])
                close(fd);
                return;
        }
-        if (ext2fs_test_inode_bitmap(current_fs->inode_map,newfile))
+        if (ext2fs_test_inode_bitmap2(current_fs->inode_map,newfile))
                com_err(argv[0], 0, "Warning: inode already set");
        ext2fs_inode_alloc_stats2(current_fs, newfile, +1, 0);
        memset(&inode, 0, sizeof(inode));
        inode.i_mode = (statbuf.st_mode & ~LINUX_S_IFMT) | LINUX_S_IFREG;
-       inode.i_atime = inode.i_ctime = inode.i_mtime = 
+       inode.i_atime = inode.i_ctime = inode.i_mtime =
                current_fs->now ? current_fs->now : time(0);
        inode.i_links_count = 1;
        inode.i_size = statbuf.st_size;
+       if (current_fs->super->s_feature_incompat &
+           EXT3_FEATURE_INCOMPAT_EXTENTS)
+               inode.i_flags |= EXT4_EXTENTS_FL;
        if (debugfs_write_new_inode(newfile, &inode, argv[0])) {
                close(fd);
                return;
@@ -1413,13 +1743,13 @@ void do_mknod(int argc, char *argv[])
                com_err(argv[1], retval, 0);
                return;
        }
-        if (ext2fs_test_inode_bitmap(current_fs->inode_map,newfile))
+        if (ext2fs_test_inode_bitmap2(current_fs->inode_map,newfile))
                com_err(argv[0], 0, "Warning: inode already set");
-       ext2fs_mark_inode_bitmap(current_fs->inode_map, newfile);
+       ext2fs_mark_inode_bitmap2(current_fs->inode_map, newfile);
        ext2fs_mark_ib_dirty(current_fs);
        memset(&inode, 0, sizeof(inode));
        inode.i_mode = mode;
-       inode.i_atime = inode.i_ctime = inode.i_mtime = 
+       inode.i_atime = inode.i_ctime = inode.i_mtime =
                current_fs->now ? current_fs->now : time(0);
        if ((major < 256) && (minor < 256)) {
                inode.i_block[0] = major*256+minor;
@@ -1463,7 +1793,7 @@ try_again:
        if (retval == EXT2_ET_DIR_NO_SPACE) {
                retval = ext2fs_expand_dir(current_fs, parent);
                if (retval) {
-                       com_err("argv[0]", retval, "while expanding directory");
+                       com_err(argv[0], retval, "while expanding directory");
                        return;
                }
                goto try_again;
@@ -1475,14 +1805,16 @@ try_again:
 
 }
 
-static int release_blocks_proc(ext2_filsys fs, blk_t *blocknr,
-                              int blockcnt EXT2FS_ATTR((unused)), 
+static int release_blocks_proc(ext2_filsys fs, blk64_t *blocknr,
+                              e2_blkcnt_t blockcnt EXT2FS_ATTR((unused)),
+                              blk64_t ref_block EXT2FS_ATTR((unused)),
+                              int ref_offset EXT2FS_ATTR((unused)),
                               void *private EXT2FS_ATTR((unused)))
 {
-       blk_t   block;
+       blk64_t block;
 
        block = *blocknr;
-       ext2fs_block_alloc_stats(fs, block, -1);
+       ext2fs_block_alloc_stats2(fs, block, -1);
        return 0;
 }
 
@@ -1495,11 +1827,11 @@ static void kill_file_by_inode(ext2_ino_t inode)
        inode_buf.i_dtime = current_fs->now ? current_fs->now : time(0);
        if (debugfs_write_inode(inode, &inode_buf, 0))
                return;
-       if (!ext2fs_inode_has_valid_blocks(&inode_buf))
+       if (!ext2fs_inode_has_valid_blocks2(current_fs, &inode_buf))
                return;
 
-       ext2fs_block_iterate(current_fs, inode, 0, NULL,
-                            release_blocks_proc, NULL);
+       ext2fs_block_iterate3(current_fs, inode, BLOCK_FLAG_READ_ONLY, NULL,
+                             release_blocks_proc, NULL);
        printf("\n");
        ext2fs_inode_alloc_stats2(current_fs, inode, -1,
                                  LINUX_S_ISDIR(inode_buf.i_mode));
@@ -1576,7 +1908,7 @@ static int rmdir_proc(ext2_ino_t dir EXT2FS_ATTR((unused)),
        rds->empty = 0;
        return 0;
 }
-       
+
 void do_rmdir(int argc, char *argv[])
 {
        int retval;
@@ -1632,8 +1964,9 @@ void do_rmdir(int argc, char *argv[])
                        return;
        }
 }
+#endif /* READ_ONLY */
 
-void do_show_debugfs_params(int argc EXT2FS_ATTR((unused)), 
+void do_show_debugfs_params(int argc EXT2FS_ATTR((unused)),
                            char *argv[] EXT2FS_ATTR((unused)))
 {
        FILE *out = stdout;
@@ -1645,6 +1978,7 @@ void do_show_debugfs_params(int argc EXT2FS_ATTR((unused)),
                current_fs ? current_fs->device_name : "--none--");
 }
 
+#ifndef READ_ONLY
 void do_expand_dir(int argc, char *argv[])
 {
        ext2_ino_t inode;
@@ -1662,7 +1996,7 @@ void do_expand_dir(int argc, char *argv[])
 void do_features(int argc, char *argv[])
 {
        int     i;
-       
+
        if (check_fs_open(argv[0]))
                return;
 
@@ -1678,14 +2012,15 @@ void do_features(int argc, char *argv[])
        }
        print_features(current_fs->super, stdout);
 }
+#endif /* READ_ONLY */
 
 void do_bmap(int argc, char *argv[])
 {
        ext2_ino_t      ino;
-       blk_t           blk, pblk;
+       blk64_t         blk, pblk;
        int             err;
        errcode_t       errcode;
-       
+
        if (common_args_process(argc, argv, 3, 3, argv[0],
                                "<file> logical_blk", 0))
                return;
@@ -1695,13 +2030,13 @@ void do_bmap(int argc, char *argv[])
                return;
        blk = parse_ulong(argv[2], argv[0], "logical_block", &err);
 
-       errcode = ext2fs_bmap(current_fs, ino, 0, 0, 0, blk, &pblk);
+       errcode = ext2fs_bmap2(current_fs, ino, 0, 0, 0, blk, 0, &pblk);
        if (errcode) {
                com_err("argv[0]", errcode,
-                       "while mapping logical block %u\n", blk);
+                       "while mapping logical block %llu\n", blk);
                return;
        }
-       printf("%u\n", pblk);
+       printf("%llu\n", pblk);
 }
 
 void do_imap(int argc, char *argv[])
@@ -1720,12 +2055,12 @@ void do_imap(int argc, char *argv[])
        offset = ((ino - 1) % EXT2_INODES_PER_GROUP(current_fs->super)) *
                EXT2_INODE_SIZE(current_fs->super);
        block = offset >> EXT2_BLOCK_SIZE_BITS(current_fs->super);
-       if (!current_fs->group_desc[(unsigned)group].bg_inode_table) {
+       if (!ext2fs_inode_table_loc(current_fs, (unsigned)group)) {
                com_err(argv[0], 0, "Inode table for group %lu is missing\n",
                        group);
                return;
        }
-       block_nr = current_fs->group_desc[(unsigned)group].bg_inode_table + 
+       block_nr = ext2fs_inode_table_loc(current_fs, (unsigned)group) +
                block;
        offset &= (EXT2_BLOCK_SIZE(current_fs->super) - 1);
 
@@ -1735,6 +2070,7 @@ void do_imap(int argc, char *argv[])
 
 }
 
+#ifndef READ_ONLY
 void do_set_current_time(int argc, char *argv[])
 {
        time_t now;
@@ -1754,6 +2090,152 @@ void do_set_current_time(int argc, char *argv[])
                current_fs->now = now;
        }
 }
+#endif /* READ_ONLY */
+
+static int find_supp_feature(__u32 *supp, int feature_type, char *name)
+{
+       int compat, bit, ret;
+       unsigned int feature_mask;
+
+       if (name) {
+               if (feature_type == E2P_FS_FEATURE)
+                       ret = e2p_string2feature(name, &compat, &feature_mask);
+               else
+                       ret = e2p_jrnl_string2feature(name, &compat,
+                                                     &feature_mask);
+               if (ret)
+                       return ret;
+
+               if (!(supp[compat] & feature_mask))
+                       return 1;
+       } else {
+               for (compat = 0; compat < 3; compat++) {
+                       for (bit = 0, feature_mask = 1; bit < 32;
+                            bit++, feature_mask <<= 1) {
+                               if (supp[compat] & feature_mask) {
+                                       if (feature_type == E2P_FS_FEATURE)
+                                               fprintf(stdout, " %s",
+                                               e2p_feature2string(compat,
+                                               feature_mask));
+                                       else
+                                               fprintf(stdout, " %s",
+                                               e2p_jrnl_feature2string(compat,
+                                               feature_mask));
+                               }
+                       }
+               }
+               fprintf(stdout, "\n");
+       }
+
+       return 0;
+}
+
+void do_supported_features(int argc, char *argv[])
+{
+        int    ret;
+       __u32   supp[3] = { EXT2_LIB_FEATURE_COMPAT_SUPP,
+                           EXT2_LIB_FEATURE_INCOMPAT_SUPP,
+                           EXT2_LIB_FEATURE_RO_COMPAT_SUPP };
+       __u32   jrnl_supp[3] = { JFS_KNOWN_COMPAT_FEATURES,
+                                JFS_KNOWN_INCOMPAT_FEATURES,
+                                JFS_KNOWN_ROCOMPAT_FEATURES };
+
+       if (argc > 1) {
+               ret = find_supp_feature(supp, E2P_FS_FEATURE, argv[1]);
+               if (ret) {
+                       ret = find_supp_feature(jrnl_supp, E2P_JOURNAL_FEATURE,
+                                               argv[1]);
+               }
+               if (ret)
+                       com_err(argv[0], 0, "Unknown feature: %s\n", argv[1]);
+               else
+                       fprintf(stdout, "Supported feature: %s\n", argv[1]);
+       } else {
+               fprintf(stdout, "Supported features:");
+               ret = find_supp_feature(supp, E2P_FS_FEATURE, NULL);
+               ret = find_supp_feature(jrnl_supp, E2P_JOURNAL_FEATURE, NULL);
+       }
+}
+
+#ifndef READ_ONLY
+void do_punch(int argc, char *argv[])
+{
+       ext2_ino_t      ino;
+       blk64_t         start, end;
+       int             err;
+       errcode_t       errcode;
+
+       if (common_args_process(argc, argv, 3, 4, argv[0],
+                               "<file> start_blk [end_blk]",
+                               CHECK_FS_RW | CHECK_FS_BITMAPS))
+               return;
+
+       ino = string_to_inode(argv[1]);
+       if (!ino)
+               return;
+       start = parse_ulong(argv[2], argv[0], "logical_block", &err);
+       if (argc == 4)
+               end = parse_ulong(argv[3], argv[0], "logical_block", &err);
+       else
+               end = ~0;
+
+       errcode = ext2fs_punch(current_fs, ino, 0, 0, start, end);
+
+       if (errcode) {
+               com_err(argv[0], errcode,
+                       "while truncating inode %u from %llu to %llu\n", ino,
+                       (unsigned long long) start, (unsigned long long) end);
+               return;
+       }
+}
+#endif /* READ_ONLY */
+
+void do_dump_mmp(int argc, char *argv[])
+{
+       struct ext2_super_block *sb;
+       struct mmp_struct *mmp_s;
+       time_t t;
+       errcode_t retval = 0;
+
+       if (check_fs_open(argv[0]))
+               return;
+
+       sb  = current_fs->super;
+       if (sb->s_mmp_block <= sb->s_first_data_block ||
+           sb->s_mmp_block >= ext2fs_blocks_count(sb)) {
+               com_err(argv[0], EXT2_ET_MMP_BAD_BLOCK, "while dumping it.\n");
+               return;
+       }
+
+       if (current_fs->mmp_buf == NULL) {
+               retval = ext2fs_get_mem(current_fs->blocksize,
+                                       &current_fs->mmp_buf);
+               if (retval) {
+                       com_err(argv[0], retval, "allocating MMP buffer.\n");
+                       return;
+               }
+       }
+
+       mmp_s = current_fs->mmp_buf;
+
+       retval = ext2fs_mmp_read(current_fs, current_fs->super->s_mmp_block,
+                                current_fs->mmp_buf);
+       if (retval) {
+               com_err(argv[0], retval, "reading MMP block.\n");
+               return;
+       }
+
+       t = mmp_s->mmp_time;
+       fprintf(stdout, "block_number: %llu\n", current_fs->super->s_mmp_block);
+       fprintf(stdout, "update_interval: %d\n",
+               current_fs->super->s_mmp_update_interval);
+       fprintf(stdout, "check_interval: %d\n", mmp_s->mmp_check_interval);
+       fprintf(stdout, "sequence: %08x\n", mmp_s->mmp_seq);
+       fprintf(stdout, "time: %lld -- %s", mmp_s->mmp_time, ctime(&t));
+       fprintf(stdout, "node_name: %s\n", mmp_s->mmp_nodename);
+       fprintf(stdout, "device_name: %s\n", mmp_s->mmp_bdevname);
+       fprintf(stdout, "magic: 0x%x\n", mmp_s->mmp_magic);
+}
 
 static int source_file(const char *cmd_file, int sci_idx)
 {
@@ -1772,6 +2254,8 @@ static int source_file(const char *cmd_file, int sci_idx)
                        exit(1);
                }
        }
+       fflush(stdout);
+       fflush(stderr);
        setbuf(stdout, NULL);
        setbuf(stderr, NULL);
        while (!feof(f)) {
@@ -1790,6 +2274,8 @@ static int source_file(const char *cmd_file, int sci_idx)
                        exit_status++;
                }
        }
+       if (f != stdin)
+               fclose(f);
        return exit_status;
 }
 
@@ -1797,22 +2283,39 @@ int main(int argc, char **argv)
 {
        int             retval;
        int             sci_idx;
-       const char      *usage = "Usage: debugfs [-b blocksize] [-s superblock] [-f cmd_file] [-R request] [-V] [[-w] [-c] device]";
+       const char      *usage = 
+               "Usage: %s [-b blocksize] [-s superblock] [-f cmd_file] "
+               "[-R request] [-V] ["
+#ifndef READ_ONLY
+               "[-w] "
+#endif
+               "[-c] device]";
        int             c;
-       int             open_flags = EXT2_FLAG_SOFTSUPP_FEATURES;
+       int             open_flags = EXT2_FLAG_SOFTSUPP_FEATURES | EXT2_FLAG_64BITS;
        char            *request = 0;
        int             exit_status = 0;
        char            *cmd_file = 0;
-       blk_t           superblock = 0;
-       blk_t           blocksize = 0;
+       blk64_t         superblock = 0;
+       blk64_t         blocksize = 0;
        int             catastrophic = 0;
        char            *data_filename = 0;
-       
+#ifdef READ_ONLY
+       const char      *opt_string = "icR:f:b:s:Vd:D";
+#else
+       const char      *opt_string = "iwcR:f:b:s:Vd:D";
+#endif
+
+       if (debug_prog_name == 0)
+#ifdef READ_ONLY
+               debug_prog_name = "rdebugfs";
+#else
+               debug_prog_name = "debugfs";
+#endif
        add_error_table(&et_ext2_error_table);
-       fprintf (stderr, "debugfs %s (%s)\n", E2FSPROGS_VERSION,
-                E2FSPROGS_DATE);
+       fprintf (stderr, "%s %s (%s)\n", debug_prog_name,
+                E2FSPROGS_VERSION, E2FSPROGS_DATE);
 
-       while ((c = getopt (argc, argv, "iwcR:f:b:s:Vd:")) != EOF) {
+       while ((c = getopt (argc, argv, opt_string)) != EOF) {
                switch (c) {
                case 'R':
                        request = optarg;
@@ -1826,15 +2329,20 @@ int main(int argc, char **argv)
                case 'i':
                        open_flags |= EXT2_FLAG_IMAGE_FILE;
                        break;
+#ifndef READ_ONLY
                case 'w':
                        open_flags |= EXT2_FLAG_RW;
                        break;
+#endif
+               case 'D':
+                       open_flags |= EXT2_FLAG_DIRECT_IO;
+                       break;
                case 'b':
-                       blocksize = parse_ulong(optarg, argv[0], 
+                       blocksize = parse_ulong(optarg, argv[0],
                                                "block size", 0);
                        break;
                case 's':
-                       superblock = parse_ulong(optarg, argv[0], 
+                       superblock = parse_ulong(optarg, argv[0],
                                                 "superblock number", 0);
                        break;
                case 'c':
@@ -1846,7 +2354,7 @@ int main(int argc, char **argv)
                                error_message(EXT2_ET_BASE));
                        exit(0);
                default:
-                       com_err(argv[0], 0, usage);
+                       com_err(argv[0], 0, usage, debug_prog_name);
                        return 1;
                }
        }
@@ -1854,8 +2362,8 @@ int main(int argc, char **argv)
                open_filesystem(argv[optind], open_flags,
                                superblock, blocksize, catastrophic,
                                data_filename);
-       
-       sci_idx = ss_create_invocation("debugfs", "0.0", (char *) NULL,
+
+       sci_idx = ss_create_invocation(debug_prog_name, "0.0", (char *) NULL,
                                       &debug_cmds, &retval);
        if (retval) {
                ss_perror(sci_idx, retval, "creating invocation");
@@ -1868,6 +2376,12 @@ int main(int argc, char **argv)
                ss_perror(sci_idx, retval, "adding standard requests");
                exit (1);
        }
+       if (extra_cmds)
+               ss_add_request_table (sci_idx, extra_cmds, 1, &retval);
+       if (retval) {
+               ss_perror(sci_idx, retval, "adding extra requests");
+               exit (1);
+       }
        if (request) {
                retval = 0;
                retval = ss_execute_line(sci_idx, request);
@@ -1881,9 +2395,11 @@ int main(int argc, char **argv)
                ss_listen(sci_idx);
        }
 
+       ss_delete_invocation(sci_idx);
+
        if (current_fs)
                close_filesystem();
-       
+
        remove_error_table(&et_ext2_error_table);
        return exit_status;
 }