X-Git-Url: https://git.whamcloud.com/?a=blobdiff_plain;f=debugfs%2Fdump.c;h=4d3865153ce0d87945bf5182cdd570363e56a518;hb=02559d514ee5737838c6820defd0880851988ebe;hp=9409ab656db96e0d32e760e9ac0b4576f2102643;hpb=d3b4de412c7710b7d5f05774dedd1e298d2c750b;p=tools%2Fe2fsprogs.git diff --git a/debugfs/dump.c b/debugfs/dump.c index 9409ab6..4d38651 100644 --- a/debugfs/dump.c +++ b/debugfs/dump.c @@ -91,9 +91,6 @@ static void fix_perms(const char *cmd, const struct ext2_inode *inode, if (i == -1) com_err(cmd, errno, "while changing ownership of %s", name); - if (fd != -1) - close(fd); - ut.actime = inode->i_atime; ut.modtime = inode->i_mtime; if (utime(name, &ut) == -1) @@ -143,8 +140,6 @@ static void dump_file(const char *cmdname, ext2_ino_t ino, int fd, if (preserve) fix_perms("dump_file", &inode, fd, outname); - else if (fd != 1) - close(fd); return; } @@ -191,6 +186,11 @@ void do_dump(int argc, char **argv) } dump_file(argv[0], inode, fd, preserve, out_fn); + if (close(fd) != 0) { + com_err(argv[0], errno, "while closing %s for dump_inode", + out_fn); + return; + } return; } @@ -210,7 +210,7 @@ static void rdump_symlink(ext2_ino_t ino, struct ext2_inode *inode, /* Apparently, this is the right way to detect and handle fast * symlinks; see do_stat() in debugfs.c. */ - if (inode->i_blocks == 0) + if (ext2fs_inode_data_blocks2(current_fs, inode) == 0) strcpy(buf, (char *) inode->i_block); else { unsigned bytes = inode->i_size; @@ -269,10 +269,14 @@ static void rdump_inode(ext2_ino_t ino, struct ext2_inode *inode, int fd; fd = open(fullname, O_WRONLY | O_CREAT | O_TRUNC | O_LARGEFILE, S_IRWXU); if (fd == -1) { - com_err("rdump", errno, "while dumping %s", fullname); + com_err("rdump", errno, "while opening %s", fullname); goto errout; } dump_file("rdump", ino, fd, 1, fullname); + if (close(fd) != 0) { + com_err("rdump", errno, "while closing %s", fullname); + goto errout; + } } else if (LINUX_S_ISDIR(inode->i_mode) && strcmp(name, ".") && strcmp(name, "..")) { errcode_t retval; @@ -280,7 +284,7 @@ static void rdump_inode(ext2_ino_t ino, struct ext2_inode *inode, /* Create the directory with 0700 permissions, because we * expect to have to create entries it. Then fix its perms * once we've done the traversal. */ - if (mkdir(fullname, S_IRWXU) == -1) { + if (name[0] && mkdir(fullname, S_IRWXU) == -1) { com_err("rdump", errno, "while making directory %s", fullname); goto errout; } @@ -308,7 +312,7 @@ static int rdump_dirent(struct ext2_dir_entry *dirent, const char *dumproot = private; struct ext2_inode inode; - thislen = dirent->name_len & 0xFF; + thislen = ext2fs_dirent_name_len(dirent); strncpy(name, dirent->name, thislen); name[thislen] = 0; @@ -322,41 +326,46 @@ static int rdump_dirent(struct ext2_dir_entry *dirent, void do_rdump(int argc, char **argv) { - ext2_ino_t ino; - struct ext2_inode inode; struct stat st; + char *dest_dir; int i; - char *p; - if (common_args_process(argc, argv, 3, 3, "rdump", - " ", 0)) + if (common_args_process(argc, argv, 3, INT_MAX, "rdump", + "... ", 0)) return; - ino = string_to_inode(argv[1]); - if (!ino) - return; + /* Pull out last argument */ + dest_dir = argv[argc - 1]; + argc--; - /* Ensure ARGV[2] is a directory. */ - i = stat(argv[2], &st); - if (i == -1) { - com_err("rdump", errno, "while statting %s", argv[2]); + /* Ensure last arg is a directory. */ + if (stat(dest_dir, &st) == -1) { + com_err("rdump", errno, "while statting %s", dest_dir); return; } if (!S_ISDIR(st.st_mode)) { - com_err("rdump", 0, "%s is not a directory", argv[2]); + com_err("rdump", 0, "%s is not a directory", dest_dir); return; } - if (debugfs_read_inode(ino, &inode, argv[1])) - return; + for (i = 1; i < argc; i++) { + char *arg = argv[i], *basename; + struct ext2_inode inode; + ext2_ino_t ino = string_to_inode(arg); + if (!ino) + continue; - p = strrchr(argv[1], '/'); - if (p) - p++; - else - p = argv[1]; + if (debugfs_read_inode(ino, &inode, arg)) + continue; + + basename = strrchr(arg, '/'); + if (basename) + basename++; + else + basename = arg; - rdump_inode(ino, &inode, p, argv[2]); + rdump_inode(ino, &inode, basename, dest_dir); + } } void do_cat(int argc, char **argv)