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>
22 #include <sys/types.h>
29 #include <uuid/uuid.h>
36 #include "kerncompat.h"
43 push_im(gdImagePtr im, char *name, char *dir)
51 snprintf(fullname, sizeof(fullname), "%s/%s", dir, name);
52 pngout = fopen(fullname, "w");
54 printf("unable to create file %s\n", fullname);
58 gdImagePng(im, pngout);
67 switch (flags & (BTRFS_BLOCK_GROUP_SYSTEM | BTRFS_BLOCK_GROUP_DATA |
68 BTRFS_BLOCK_GROUP_METADATA)) {
69 case BTRFS_BLOCK_GROUP_SYSTEM:
71 case BTRFS_BLOCK_GROUP_DATA:
73 case BTRFS_BLOCK_GROUP_METADATA:
75 case BTRFS_BLOCK_GROUP_DATA | BTRFS_BLOCK_GROUP_METADATA:
83 print_bg(FILE *html, char *name, u64 start, u64 len, u64 used, u64 flags,
86 double frag = (double)areas / (len / 4096) * 2;
88 fprintf(html, "<p>%s chunk starts at %lld, size is %s, %.2f%% used, "
89 "%.2f%% fragmented</p>\n", chunk_type(flags), start,
90 pretty_sizes(len), 100.0 * used / len, 100.0 * frag);
91 fprintf(html, "<img src=\"%s\" border=\"1\" />\n", name);
108 get_color(struct btrfs_extent_item *item, int len)
114 struct btrfs_extent_inline_ref *ref;
116 refs = btrfs_stack_extent_refs(item);
117 flags = btrfs_stack_extent_flags(item);
119 if (flags & BTRFS_EXTENT_FLAG_DATA)
122 /* this must be an fs tree */
126 ref = (void *)item + sizeof(struct btrfs_extent_item) +
127 sizeof(struct btrfs_tree_block_info);
128 type = btrfs_stack_extent_inline_ref_type(ref);
129 offset = btrfs_stack_extent_inline_ref_offset(ref);
132 case BTRFS_EXTENT_DATA_REF_KEY:
134 case BTRFS_SHARED_BLOCK_REF_KEY:
135 case BTRFS_SHARED_DATA_REF_KEY:
137 case BTRFS_TREE_BLOCK_REF_KEY:
140 return COLOR_UNKNOWN;
144 case BTRFS_ROOT_TREE_OBJECTID:
146 case BTRFS_EXTENT_TREE_OBJECTID:
148 case BTRFS_CHUNK_TREE_OBJECTID:
150 case BTRFS_DEV_TREE_OBJECTID:
152 case BTRFS_FS_TREE_OBJECTID:
154 case BTRFS_CSUM_TREE_OBJECTID:
156 case BTRFS_DATA_RELOC_TREE_OBJECTID:
160 return COLOR_UNKNOWN;
164 init_colors(gdImagePtr im, int *colors)
166 colors[COLOR_ROOT] = gdImageColorAllocate(im, 255, 0, 0);
167 colors[COLOR_EXTENT] = gdImageColorAllocate(im, 0, 255, 0);
168 colors[COLOR_CHUNK] = gdImageColorAllocate(im, 255, 0, 0);
169 colors[COLOR_DEV] = gdImageColorAllocate(im, 255, 0, 0);
170 colors[COLOR_FS] = gdImageColorAllocate(im, 0, 0, 0);
171 colors[COLOR_CSUM] = gdImageColorAllocate(im, 0, 0, 255);
172 colors[COLOR_RELOC] = gdImageColorAllocate(im, 128, 128, 128);
173 colors[COLOR_DATA] = gdImageColorAllocate(im, 100, 0, 0);
174 colors[COLOR_UNKNOWN] = gdImageColorAllocate(im, 50, 50, 50);
178 list_fragments(int fd, u64 flags, char *dir)
181 struct btrfs_ioctl_search_args args;
182 struct btrfs_ioctl_search_key *sk = &args.key;
184 struct btrfs_ioctl_search_header *sh;
185 unsigned long off = 0;
192 u64 saved_extent = 0;
201 int colors[COLOR_MAX];
203 gdImagePtr im = NULL;
208 snprintf(name, sizeof(name), "%s/index.html", dir);
209 html = fopen(name, "w");
211 printf("unable to create %s\n", name);
215 fprintf(html, "<html><header>\n");
216 fprintf(html, "<title>Btrfs Block Group Allocation Map</title>\n");
217 fprintf(html, "<style type=\"text/css\">\n");
218 fprintf(html, "img {margin-left: 1em; margin-bottom: 2em;}\n");
219 fprintf(html, "</style>\n");
220 fprintf(html, "</header><body>\n");
222 memset(&args, 0, sizeof(args));
227 sk->max_objectid = (u64)-1;
228 sk->max_offset = (u64)-1;
229 sk->max_transid = (u64)-1;
231 /* just a big number, doesn't matter much */
235 ret = ioctl(fd, BTRFS_IOC_TREE_SEARCH, &args);
237 fprintf(stderr, "ERROR: can't perform the search\n");
240 /* the ioctl returns the number of item it found in nr_items */
241 if (sk->nr_items == 0)
245 for (i = 0; i < sk->nr_items; i++) {
248 sh = (struct btrfs_ioctl_search_header *)(args.buf +
251 if (sh->type == BTRFS_BLOCK_GROUP_ITEM_KEY) {
252 struct btrfs_block_group_item *bg;
255 push_im(im, name, dir);
258 print_bg(html, name, bgstart, bglen,
259 bgused, bgflags, areas);
264 bg = (struct btrfs_block_group_item *)
266 bgflags = btrfs_block_group_flags(bg);
267 bgused = btrfs_block_group_used(bg);
269 printf("found block group %lld len %lld "
270 "flags %lld\n", sh->objectid,
271 sh->offset, bgflags);
272 if (!(bgflags & flags)) {
273 /* skip this block group */
274 sk->min_objectid = sh->objectid +
280 im = gdImageCreate(width,
281 (sh->offset / 4096 + 799) / width);
283 white = gdImageColorAllocate(im, 255, 255, 255);
284 black = gdImageColorAllocate(im, 0, 0, 0);
286 for (j = 0; j < 10; ++j)
289 init_colors(im, colors);
290 bgstart = sh->objectid;
292 bgend = bgstart + bglen;
294 snprintf(name, sizeof(name), "bg%d.png", bgnum);
298 px = (saved_extent - bgstart) / 4096;
299 for (j = 0; j < saved_len / 4096; ++j) {
300 int x = (px + j) % width;
301 int y = (px + j) / width;
302 gdImageSetPixel(im, x, y,
305 last_end += saved_len;
310 if (im && sh->type == BTRFS_EXTENT_ITEM_KEY) {
313 struct btrfs_extent_item *item;
315 item = (struct btrfs_extent_item *)
317 e_flags = btrfs_stack_extent_flags(item);
320 c = colors[get_color(item, sh->len)];
323 if (sh->objectid > bgend) {
324 printf("WARN: extent %lld is without "
325 "block group\n", sh->objectid);
328 if (sh->objectid == bgend) {
329 saved_extent = sh->objectid;
330 saved_len = sh->offset;
331 saved_flags = e_flags;
335 px = (sh->objectid - bgstart) / 4096;
336 for (j = 0; j < sh->offset / 4096; ++j) {
337 int x = (px + j) % width;
338 int y = (px + j) / width;
339 gdImageSetPixel(im, x, y, c);
341 if (sh->objectid != last_end)
343 last_end = sh->objectid + sh->offset;
349 * record the mins in sk so we can make sure the
350 * next search doesn't repeat this root
352 sk->min_objectid = sh->objectid;
353 sk->min_type = sh->type;
354 sk->min_offset = sh->offset;
358 /* increment by one */
359 if (++sk->min_offset == 0)
360 if (++sk->min_type == 0)
361 if (++sk->min_objectid == 0)
366 push_im(im, name, dir);
367 print_bg(html, name, bgstart, bglen, bgused, bgflags, areas);
371 fprintf(html, "<p>");
372 fprintf(html, "data - dark red, ");
373 fprintf(html, "fs tree - black, ");
374 fprintf(html, "extent tree - green, ");
375 fprintf(html, "csum tree - blue, ");
376 fprintf(html, "reloc tree - grey, ");
377 fprintf(html, "other trees - red, ");
378 fprintf(html, "unknown tree - dark grey");
379 fprintf(html, "</p>");
381 fprintf(html, "</body></html>\n");
389 printf("usage: btrfs-fragments [options] <path>\n");
390 printf(" -c use color\n");
391 printf(" -d print data chunks\n");
392 printf(" -m print metadata chunks\n");
393 printf(" -s print system chunks\n");
394 printf(" (default is data+metadata)\n");
395 printf(" -o <dir> output directory, default is html\n");
399 int main(int argc, char **argv)
408 int c = getopt(argc, argv, "cmso:h");
416 flags |= BTRFS_BLOCK_GROUP_DATA;
419 flags |= BTRFS_BLOCK_GROUP_METADATA;
422 flags |= BTRFS_BLOCK_GROUP_SYSTEM;
434 path = argv[optind++];
440 fd = open_file_or_dir(path);
442 fprintf(stderr, "ERROR: can't access '%s'\n", path);
447 flags = BTRFS_BLOCK_GROUP_DATA | BTRFS_BLOCK_GROUP_METADATA;
449 ret = list_fragments(fd, flags, dir);