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.
21 #include <sys/ioctl.h>
24 #include "kerncompat.h"
28 #include "send-utils.h"
31 #include "btrfs-list.h"
33 static const char * const inspect_cmd_group_usage[] = {
34 "btrfs inspect-internal <command> <args>",
38 static int __ino_to_path_fd(u64 inum, int fd, int verbose, const char *prepend)
42 struct btrfs_ioctl_ino_path_args ipa;
43 struct btrfs_data_container *fspath;
45 fspath = malloc(4096);
49 memset(fspath, 0, sizeof(*fspath));
52 ipa.fspath = (uintptr_t)fspath;
54 ret = ioctl(fd, BTRFS_IOC_INO_PATHS, &ipa);
56 printf("ioctl ret=%d, error: %s\n", ret, strerror(errno));
61 printf("ioctl ret=%d, bytes_left=%lu, bytes_missing=%lu, "
62 "cnt=%d, missed=%d\n", ret,
63 (unsigned long)fspath->bytes_left,
64 (unsigned long)fspath->bytes_missing,
65 fspath->elem_cnt, fspath->elem_missed);
67 for (i = 0; i < fspath->elem_cnt; ++i) {
70 ptr = (u64)(unsigned long)fspath->val;
71 ptr += fspath->val[i];
72 str = (char *)(unsigned long)ptr;
74 printf("%s/%s\n", prepend, str);
84 static const char * const cmd_inode_resolve_usage[] = {
85 "btrfs inspect-internal inode-resolve [-v] <inode> <path>",
86 "Get file system paths for the given inode",
90 static int cmd_inode_resolve(int argc, char **argv)
98 int c = getopt(argc, argv, "v");
107 usage(cmd_inode_resolve_usage);
111 if (check_argc_exact(argc - optind, 2))
112 usage(cmd_inode_resolve_usage);
114 fd = open_file_or_dir(argv[optind+1]);
116 fprintf(stderr, "ERROR: can't access '%s'\n", argv[optind+1]);
120 ret = __ino_to_path_fd(atoll(argv[optind]), fd, verbose,
127 static const char * const cmd_logical_resolve_usage[] = {
128 "btrfs inspect-internal logical-resolve [-Pv] [-s bufsize] <logical> <path>",
129 "Get file system paths for the given logical address",
130 "-P skip the path resolving and print the inodes instead",
132 "-s bufsize set inode container's size. This is used to increase inode",
133 " container's size in case it is not enough to read all the ",
134 " resolved results. The max value one can set is 64k",
138 static int cmd_logical_resolve(int argc, char **argv)
146 struct btrfs_ioctl_logical_ino_args loi;
147 struct btrfs_data_container *inodes;
149 char full_path[4096];
154 int c = getopt(argc, argv, "Pvs:");
166 size = atoll(optarg);
169 usage(cmd_logical_resolve_usage);
173 if (check_argc_exact(argc - optind, 2))
174 usage(cmd_logical_resolve_usage);
176 size = min(size, (u64)64 * 1024);
177 inodes = malloc(size);
181 memset(inodes, 0, sizeof(*inodes));
182 loi.logical = atoll(argv[optind]);
184 loi.inodes = (uintptr_t)inodes;
186 fd = open_file_or_dir(argv[optind+1]);
188 fprintf(stderr, "ERROR: can't access '%s'\n", argv[optind+1]);
193 ret = ioctl(fd, BTRFS_IOC_LOGICAL_INO, &loi);
195 printf("ioctl ret=%d, error: %s\n", ret, strerror(errno));
200 printf("ioctl ret=%d, total_size=%llu, bytes_left=%lu, "
201 "bytes_missing=%lu, cnt=%d, missed=%d\n",
203 (unsigned long)inodes->bytes_left,
204 (unsigned long)inodes->bytes_missing,
205 inodes->elem_cnt, inodes->elem_missed);
207 bytes_left = sizeof(full_path);
208 ret = snprintf(full_path, bytes_left, "%s/", argv[optind+1]);
209 path_ptr = full_path + ret;
210 bytes_left -= ret + 1;
211 BUG_ON(bytes_left < 0);
213 for (i = 0; i < inodes->elem_cnt; i += 3) {
214 u64 inum = inodes->val[i];
215 u64 offset = inodes->val[i+1];
216 u64 root = inodes->val[i+2];
221 name = btrfs_list_path_for_root(fd, root);
231 ret = snprintf(path_ptr, bytes_left, "%s",
233 BUG_ON(ret >= bytes_left);
235 path_fd = open_file_or_dir(full_path);
237 fprintf(stderr, "ERROR: can't access "
238 "'%s'\n", full_path);
242 __ino_to_path_fd(inum, path_fd, verbose, full_path);
246 printf("inode %llu offset %llu root %llu\n", inum,
258 static const char * const cmd_subvolid_resolve_usage[] = {
259 "btrfs inspect-internal subvolid-resolve <subvolid> <path>",
260 "Get file system paths for the given subvolume ID.",
264 static int cmd_subvolid_resolve(int argc, char **argv)
269 char path[BTRFS_PATH_NAME_MAX + 1];
271 if (check_argc_exact(argc, 3))
272 usage(cmd_subvolid_resolve_usage);
274 fd = open_file_or_dir(argv[2]);
276 fprintf(stderr, "ERROR: can't access '%s'\n", argv[2]);
281 subvol_id = atoll(argv[1]);
282 ret = btrfs_subvolid_resolve(fd, path, sizeof(path), subvol_id);
286 "%s: btrfs_subvolid_resolve(subvol_id %llu) failed with ret=%d\n",
287 argv[0], (unsigned long long)subvol_id, ret);
291 path[BTRFS_PATH_NAME_MAX] = '\0';
292 printf("%s\n", path);
300 const struct cmd_group inspect_cmd_group = {
301 inspect_cmd_group_usage, NULL, {
302 { "inode-resolve", cmd_inode_resolve, cmd_inode_resolve_usage,
304 { "logical-resolve", cmd_logical_resolve,
305 cmd_logical_resolve_usage, NULL, 0 },
306 { "subvolid-resolve", cmd_subvolid_resolve,
307 cmd_subvolid_resolve_usage, NULL, 0 },
312 int cmd_inspect(int argc, char **argv)
314 return handle_command_group(&inspect_cmd_group, argc, argv);