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"
29 #include "btrfs-list.h"
31 static const char * const inspect_cmd_group_usage[] = {
32 "btrfs inspect-internal <command> <args>",
36 static int __ino_to_path_fd(u64 inum, int fd, int verbose, const char *prepend)
40 struct btrfs_ioctl_ino_path_args ipa;
41 struct btrfs_data_container *fspath;
43 fspath = malloc(4096);
47 memset(fspath, 0, sizeof(*fspath));
50 ipa.fspath = (uintptr_t)fspath;
52 ret = ioctl(fd, BTRFS_IOC_INO_PATHS, &ipa);
54 printf("ioctl ret=%d, error: %s\n", ret, strerror(errno));
59 printf("ioctl ret=%d, bytes_left=%lu, bytes_missing=%lu, "
60 "cnt=%d, missed=%d\n", ret,
61 (unsigned long)fspath->bytes_left,
62 (unsigned long)fspath->bytes_missing,
63 fspath->elem_cnt, fspath->elem_missed);
65 for (i = 0; i < fspath->elem_cnt; ++i) {
68 ptr = (u64)(unsigned long)fspath->val;
69 ptr += fspath->val[i];
70 str = (char *)(unsigned long)ptr;
72 printf("%s/%s\n", prepend, str);
82 static const char * const cmd_inode_resolve_usage[] = {
83 "btrfs inspect-internal inode-resolve [-v] <inode> <path>",
84 "Get file system paths for the given inode",
88 static int cmd_inode_resolve(int argc, char **argv)
96 int c = getopt(argc, argv, "v");
105 usage(cmd_inode_resolve_usage);
109 if (check_argc_exact(argc - optind, 2))
110 usage(cmd_inode_resolve_usage);
112 fd = open_file_or_dir(argv[optind+1]);
114 fprintf(stderr, "ERROR: can't access '%s'\n", argv[optind+1]);
118 ret = __ino_to_path_fd(atoll(argv[optind]), fd, verbose,
125 static const char * const cmd_logical_resolve_usage[] = {
126 "btrfs inspect-internal logical-resolve [-Pv] [-s bufsize] <logical> <path>",
127 "Get file system paths for the given logical address",
128 "-P skip the path resolving and print the inodes instead",
130 "-s bufsize set inode container's size. This is used to increase inode",
131 " container's size in case it is not enough to read all the ",
132 " resolved results. The max value one can set is 64k",
136 static int cmd_logical_resolve(int argc, char **argv)
144 struct btrfs_ioctl_logical_ino_args loi;
145 struct btrfs_data_container *inodes;
147 char full_path[4096];
152 int c = getopt(argc, argv, "Pvs:");
164 size = atoll(optarg);
167 usage(cmd_logical_resolve_usage);
171 if (check_argc_exact(argc - optind, 2))
172 usage(cmd_logical_resolve_usage);
174 size = min(size, (u64)64 * 1024);
175 inodes = malloc(size);
179 memset(inodes, 0, sizeof(*inodes));
180 loi.logical = atoll(argv[optind]);
182 loi.inodes = (uintptr_t)inodes;
184 fd = open_file_or_dir(argv[optind+1]);
186 fprintf(stderr, "ERROR: can't access '%s'\n", argv[optind+1]);
191 ret = ioctl(fd, BTRFS_IOC_LOGICAL_INO, &loi);
193 printf("ioctl ret=%d, error: %s\n", ret, strerror(errno));
198 printf("ioctl ret=%d, total_size=%llu, bytes_left=%lu, "
199 "bytes_missing=%lu, cnt=%d, missed=%d\n",
201 (unsigned long)inodes->bytes_left,
202 (unsigned long)inodes->bytes_missing,
203 inodes->elem_cnt, inodes->elem_missed);
205 bytes_left = sizeof(full_path);
206 ret = snprintf(full_path, bytes_left, "%s/", argv[optind+1]);
207 path_ptr = full_path + ret;
208 bytes_left -= ret + 1;
209 BUG_ON(bytes_left < 0);
211 for (i = 0; i < inodes->elem_cnt; i += 3) {
212 u64 inum = inodes->val[i];
213 u64 offset = inodes->val[i+1];
214 u64 root = inodes->val[i+2];
219 name = btrfs_list_path_for_root(fd, root);
229 ret = snprintf(path_ptr, bytes_left, "%s",
231 BUG_ON(ret >= bytes_left);
233 path_fd = open_file_or_dir(full_path);
235 fprintf(stderr, "ERROR: can't access "
236 "'%s'\n", full_path);
240 __ino_to_path_fd(inum, path_fd, verbose, full_path);
244 printf("inode %llu offset %llu root %llu\n", inum,
256 const struct cmd_group inspect_cmd_group = {
257 inspect_cmd_group_usage, NULL, {
258 { "inode-resolve", cmd_inode_resolve, cmd_inode_resolve_usage,
260 { "logical-resolve", cmd_logical_resolve,
261 cmd_logical_resolve_usage, NULL, 0 },
266 int cmd_inspect(int argc, char **argv)
268 return handle_command_group(&inspect_cmd_group, argc, argv);