2 * This program is free software; you can redistribute it and/or
3 * modify it under the terms of the GNU General Public
4 * License v2 as published by the Free Software Foundation.
6 * This program is distributed in the hope that it will be useful,
7 * but WITHOUT ANY WARRANTY; without even the implied warranty of
8 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
9 * General Public License for more details.
11 * You should have received a copy of the GNU General Public
12 * License along with this program; if not, write to the
13 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
14 * Boston, MA 021110-1307, USA.
20 #include <sys/ioctl.h>
23 #include "kerncompat.h"
27 #include "btrfs-list.h"
29 static const char * const inspect_cmd_group_usage[] = {
30 "btrfs inspect-internal <command> <args>",
34 static int __ino_to_path_fd(u64 inum, int fd, int verbose, const char *prepend)
38 struct btrfs_ioctl_ino_path_args ipa;
39 struct btrfs_data_container *fspath;
41 fspath = malloc(4096);
47 ipa.fspath = (u64)fspath;
49 ret = ioctl(fd, BTRFS_IOC_INO_PATHS, &ipa);
51 printf("ioctl ret=%d, error: %s\n", ret, strerror(errno));
56 printf("ioctl ret=%d, bytes_left=%lu, bytes_missing=%lu, "
57 "cnt=%d, missed=%d\n", ret,
58 (unsigned long)fspath->bytes_left,
59 (unsigned long)fspath->bytes_missing,
60 fspath->elem_cnt, fspath->elem_missed);
62 for (i = 0; i < fspath->elem_cnt; ++i) {
63 char **str = (char **)fspath->val;
64 str[i] += (unsigned long)fspath->val;
66 printf("%s/%s\n", prepend, str[i]);
68 printf("%s\n", str[i]);
76 static const char * const cmd_inode_resolve_usage[] = {
77 "btrfs inspect-internal inode-resolve [-v] <inode> <path>",
78 "Get file system paths for the given inode",
82 static int cmd_inode_resolve(int argc, char **argv)
89 int c = getopt(argc, argv, "v");
98 usage(cmd_inode_resolve_usage);
102 if (check_argc_exact(argc - optind, 2))
103 usage(cmd_inode_resolve_usage);
105 fd = open_file_or_dir(argv[optind+1]);
107 fprintf(stderr, "ERROR: can't access '%s'\n", argv[optind+1]);
111 return __ino_to_path_fd(atoll(argv[optind]), fd, verbose,
115 static const char * const cmd_logical_resolve_usage[] = {
116 "btrfs inspect-internal logical-resolve [-Pv] <logical> <path>",
117 "Get file system paths for the given logical address",
121 static int cmd_logical_resolve(int argc, char **argv)
129 struct btrfs_ioctl_logical_ino_args loi;
130 struct btrfs_data_container *inodes;
131 char full_path[4096];
136 int c = getopt(argc, argv, "Pv");
148 usage(cmd_logical_resolve_usage);
152 if (check_argc_exact(argc - optind, 2))
153 usage(cmd_logical_resolve_usage);
155 inodes = malloc(4096);
159 loi.logical = atoll(argv[optind]);
161 loi.inodes = (u64)inodes;
163 fd = open_file_or_dir(argv[optind+1]);
165 fprintf(stderr, "ERROR: can't access '%s'\n", argv[optind+1]);
170 ret = ioctl(fd, BTRFS_IOC_LOGICAL_INO, &loi);
172 printf("ioctl ret=%d, error: %s\n", ret, strerror(errno));
177 printf("ioctl ret=%d, bytes_left=%lu, bytes_missing=%lu, "
178 "cnt=%d, missed=%d\n", ret,
179 (unsigned long)inodes->bytes_left,
180 (unsigned long)inodes->bytes_missing,
181 inodes->elem_cnt, inodes->elem_missed);
183 bytes_left = sizeof(full_path);
184 ret = snprintf(full_path, bytes_left, "%s/", argv[optind+1]);
185 path_ptr = full_path + ret;
186 bytes_left -= ret + 1;
187 BUG_ON(bytes_left < 0);
189 for (i = 0; i < inodes->elem_cnt; i += 3) {
190 u64 inum = inodes->val[i];
191 u64 offset = inodes->val[i+1];
192 u64 root = inodes->val[i+2];
197 name = path_for_root(fd, root);
199 return PTR_ERR(name);
205 ret = snprintf(path_ptr, bytes_left, "%s",
207 BUG_ON(ret >= bytes_left);
209 path_fd = open_file_or_dir(full_path);
211 fprintf(stderr, "ERROR: can't access "
212 "'%s'\n", full_path);
216 __ino_to_path_fd(inum, path_fd, verbose, full_path);
218 printf("inode %llu offset %llu root %llu\n", inum,
228 const struct cmd_group inspect_cmd_group = {
229 inspect_cmd_group_usage, NULL, {
230 { "inode-resolve", cmd_inode_resolve, cmd_inode_resolve_usage,
232 { "logical-resolve", cmd_logical_resolve,
233 cmd_logical_resolve_usage, NULL, 0 },
238 int cmd_inspect(int argc, char **argv)
240 return handle_command_group(&inspect_cmd_group, argc, argv);