2 * Copyright (C) 2009 Oracle. All rights reserved.
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public
6 * License v2 as published by the Free Software Foundation.
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
13 * You should have received a copy of the GNU General Public
14 * License along with this program; if not, write to the
15 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16 * Boston, MA 021110-1307, USA.
19 #define _XOPEN_SOURCE 500
26 #include "kerncompat.h"
30 #include "print-tree.h"
31 #include "transaction.h"
35 /* we write the mirror info to stdout unless they are dumping the data
38 static FILE *info_file;
40 struct extent_buffer *debug_read_block(struct btrfs_root *root, u64 bytenr,
41 u32 blocksize, int copy)
44 struct extent_buffer *eb;
46 struct btrfs_multi_bio *multi = NULL;
47 struct btrfs_device *device;
51 eb = btrfs_find_create_tree_block(root, bytenr, blocksize);
57 ret = btrfs_map_block(&root->fs_info->mapping_tree, READ,
58 eb->start, &length, &multi, mirror_num);
60 device = multi->stripes[0].dev;
63 eb->dev_bytenr = multi->stripes[0].physical;
65 fprintf(info_file, "mirror %d logical %Lu physical %Lu "
66 "device %s\n", mirror_num, (unsigned long long)bytenr,
67 (unsigned long long)eb->dev_bytenr, device->name);
70 if (!copy || mirror_num == copy)
71 ret = read_extent_from_disk(eb);
73 num_copies = btrfs_num_copies(&root->fs_info->mapping_tree,
79 if (mirror_num > num_copies)
85 static void print_usage(void)
87 fprintf(stderr, "usage: btrfs-map-logical [options] device\n");
88 fprintf(stderr, "\t-l Logical extent to map\n");
89 fprintf(stderr, "\t-c Copy of the extent to read (usually 1 or 2)\n");
90 fprintf(stderr, "\t-o Output file to hold the extent\n");
91 fprintf(stderr, "\t-b Number of bytes to read\n");
95 static struct option long_options[] = {
96 /* { "byte-count", 1, NULL, 'b' }, */
97 { "logical", 1, NULL, 'l' },
98 { "copy", 1, NULL, 'c' },
99 { "output", 1, NULL, 'o' },
100 { "bytes", 1, NULL, 'b' },
104 int main(int ac, char **av)
106 struct cache_tree root_cache;
107 struct btrfs_root *root;
108 struct extent_buffer *eb;
110 char *output_file = NULL;
113 int option_index = 0;
121 c = getopt_long(ac, av, "l:c:o:b:", long_options,
127 logical = atoll(optarg);
130 "invalid extent number\n");
138 "invalid copy number\n");
143 bytes = atoll(optarg);
146 "invalid byte count\n");
151 output_file = strdup(optarg);
168 cache_tree_init(&root_cache);
170 root = open_ctree(dev, 0, 0);
172 fprintf(stderr, "Open ctree failed\n");
178 if (strcmp(output_file, "-") == 0) {
182 out_fd = open(output_file, O_RDWR | O_CREAT, 0600);
185 err = ftruncate(out_fd, 0);
195 bytes = root->sectorsize;
197 bytes = (bytes + root->sectorsize - 1) / root->sectorsize;
198 bytes *= root->sectorsize;
201 eb = debug_read_block(root, logical, root->sectorsize, copy);
202 if (eb && output_file) {
203 err = write(out_fd, eb->data, eb->len);
204 if (err < 0 || err != eb->len) {
205 fprintf(stderr, "output file write failed\n");
209 free_extent_buffer(eb);
210 logical += root->sectorsize;
211 bytes -= root->sectorsize;
215 if (output_file && out_fd != 1)