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>
23 #include <uuid/uuid.h>
26 #include "kerncompat.h"
36 static const char * const filesystem_cmd_group_usage[] = {
37 "btrfs filesystem [<group>] <command> [<args>]",
41 static const char * const cmd_df_usage[] = {
42 "btrfs filesystem df <path>",
43 "Show space usage information for a mount point",
47 static int cmd_df(int argc, char **argv)
49 struct btrfs_ioctl_space_args *sargs, *sargs_orig;
55 DIR *dirstream = NULL;
57 if (check_argc_exact(argc, 2))
62 fd = open_file_or_dir(path, &dirstream);
64 fprintf(stderr, "ERROR: can't access to '%s'\n", path);
68 sargs_orig = sargs = malloc(sizeof(struct btrfs_ioctl_space_args));
72 sargs->space_slots = 0;
73 sargs->total_spaces = 0;
75 ret = ioctl(fd, BTRFS_IOC_SPACE_INFO, sargs);
78 fprintf(stderr, "ERROR: couldn't get space info on '%s' - %s\n",
82 if (!sargs->total_spaces) {
87 count = sargs->total_spaces;
89 sargs = realloc(sargs, sizeof(struct btrfs_ioctl_space_args) +
90 (count * sizeof(struct btrfs_ioctl_space_info)));
97 sargs->space_slots = count;
98 sargs->total_spaces = 0;
100 ret = ioctl(fd, BTRFS_IOC_SPACE_INFO, sargs);
103 fprintf(stderr, "ERROR: couldn't get space info on '%s' - %s\n",
108 for (i = 0; i < sargs->total_spaces; i++) {
109 char description[80];
111 u64 flags = sargs->spaces[i].flags;
113 memset(description, 0, 80);
115 if (flags & BTRFS_BLOCK_GROUP_DATA) {
116 if (flags & BTRFS_BLOCK_GROUP_METADATA) {
117 snprintf(description, 14, "%s",
121 snprintf(description, 5, "%s", "Data");
124 } else if (flags & BTRFS_BLOCK_GROUP_SYSTEM) {
125 snprintf(description, 7, "%s", "System");
127 } else if (flags & BTRFS_BLOCK_GROUP_METADATA) {
128 snprintf(description, 9, "%s", "Metadata");
132 if (flags & BTRFS_BLOCK_GROUP_RAID0) {
133 snprintf(description+written, 8, "%s", ", RAID0");
135 } else if (flags & BTRFS_BLOCK_GROUP_RAID1) {
136 snprintf(description+written, 8, "%s", ", RAID1");
138 } else if (flags & BTRFS_BLOCK_GROUP_DUP) {
139 snprintf(description+written, 6, "%s", ", DUP");
141 } else if (flags & BTRFS_BLOCK_GROUP_RAID10) {
142 snprintf(description+written, 9, "%s", ", RAID10");
144 } else if (flags & BTRFS_BLOCK_GROUP_RAID5) {
145 snprintf(description+written, 9, "%s", ", RAID5");
147 } else if (flags & BTRFS_BLOCK_GROUP_RAID6) {
148 snprintf(description+written, 9, "%s", ", RAID6");
152 printf("%s: total=%s, used=%s\n", description,
153 pretty_size(sargs->spaces[i].total_bytes),
154 pretty_size(sargs->spaces[i].used_bytes));
157 close_file_or_dir(fd, dirstream);
163 static int uuid_search(struct btrfs_fs_devices *fs_devices, char *search)
166 struct list_head *cur;
167 struct btrfs_device *device;
168 int search_len = strlen(search);
170 search_len = min(search_len, 37);
171 uuid_unparse(fs_devices->fsid, uuidbuf);
172 if (!strncmp(uuidbuf, search, search_len))
175 list_for_each(cur, &fs_devices->devices) {
176 device = list_entry(cur, struct btrfs_device, dev_list);
177 if ((device->label && strcmp(device->label, search) == 0) ||
178 strcmp(device->name, search) == 0)
184 static void print_one_uuid(struct btrfs_fs_devices *fs_devices)
187 struct list_head *cur;
188 struct btrfs_device *device;
192 uuid_unparse(fs_devices->fsid, uuidbuf);
193 device = list_entry(fs_devices->devices.next, struct btrfs_device,
195 if (device->label && device->label[0])
196 printf("Label: '%s' ", device->label);
198 printf("Label: none ");
201 total = device->total_devs;
202 printf(" uuid: %s\n\tTotal devices %llu FS bytes used %s\n", uuidbuf,
203 (unsigned long long)total,
204 pretty_size(device->super_bytes_used));
206 list_for_each(cur, &fs_devices->devices) {
207 device = list_entry(cur, struct btrfs_device, dev_list);
209 printf("\tdevid %4llu size %s used %s path %s\n",
210 (unsigned long long)device->devid,
211 pretty_size(device->total_bytes),
212 pretty_size(device->bytes_used), device->name);
216 if (devs_found < total) {
217 printf("\t*** Some devices missing\n");
222 static const char * const cmd_show_usage[] = {
223 "btrfs filesystem show [--all-devices] [<uuid>|<label>]",
224 "Show the structure of a filesystem",
225 "If no argument is given, structure of all present filesystems is shown.",
229 static int cmd_show(int argc, char **argv)
231 struct list_head *all_uuids;
232 struct btrfs_fs_devices *fs_devices;
233 struct list_head *cur_uuid;
239 if( argc > 1 && !strcmp(argv[1],"--all-devices")){
244 if (check_argc_max(argc, searchstart + 1))
245 usage(cmd_show_usage);
248 ret = btrfs_scan_block_devices(0);
250 ret = btrfs_scan_one_dir("/dev", 0);
253 fprintf(stderr, "ERROR: error %d while scanning\n", ret);
257 if(searchstart < argc)
258 search = argv[searchstart];
260 all_uuids = btrfs_scanned_uuids();
261 list_for_each(cur_uuid, all_uuids) {
262 fs_devices = list_entry(cur_uuid, struct btrfs_fs_devices,
264 if (search && uuid_search(fs_devices, search) == 0)
266 print_one_uuid(fs_devices);
268 printf("%s\n", BTRFS_BUILD_VERSION);
272 static const char * const cmd_sync_usage[] = {
273 "btrfs filesystem sync <path>",
274 "Force a sync on a filesystem",
278 static int cmd_sync(int argc, char **argv)
282 DIR *dirstream = NULL;
284 if (check_argc_exact(argc, 2))
285 usage(cmd_sync_usage);
289 fd = open_file_or_dir(path, &dirstream);
291 fprintf(stderr, "ERROR: can't access to '%s'\n", path);
295 printf("FSSync '%s'\n", path);
296 res = ioctl(fd, BTRFS_IOC_SYNC);
298 close_file_or_dir(fd, dirstream);
300 fprintf(stderr, "ERROR: unable to fs-syncing '%s' - %s\n",
308 static int parse_compress_type(char *s)
310 if (strcmp(optarg, "zlib") == 0)
311 return BTRFS_COMPRESS_ZLIB;
312 else if (strcmp(optarg, "lzo") == 0)
313 return BTRFS_COMPRESS_LZO;
315 fprintf(stderr, "Unknown compress type %s\n", s);
320 static const char * const cmd_defrag_usage[] = {
321 "btrfs filesystem defragment [options] <file>|<dir> [<file>|<dir>...]",
322 "Defragment a file or a directory",
325 "-c[zlib,lzo] compress the file while defragmenting",
326 "-f flush data to disk immediately after defragmenting",
327 "-s start defragment only from byte onward",
328 "-l len defragment only up to len bytes",
329 "-t size minimal size of file to be considered for defragmenting",
333 static int cmd_defrag(int argc, char **argv)
345 struct btrfs_ioctl_defrag_range_args range;
347 int compress_type = BTRFS_COMPRESS_NONE;
348 DIR *dirstream = NULL;
352 int c = getopt(argc, argv, "vc::fs:l:t:");
358 compress_type = BTRFS_COMPRESS_ZLIB;
360 compress_type = parse_compress_type(optarg);
371 start = parse_size(optarg);
375 len = parse_size(optarg);
379 thresh = parse_size(optarg);
383 usage(cmd_defrag_usage);
387 if (check_argc_min(argc - optind, 1))
388 usage(cmd_defrag_usage);
390 memset(&range, 0, sizeof(range));
393 range.extent_thresh = thresh;
395 range.flags |= BTRFS_DEFRAG_RANGE_COMPRESS;
396 range.compress_type = compress_type;
399 range.flags |= BTRFS_DEFRAG_RANGE_START_IO;
401 for (i = optind; i < argc; i++) {
403 printf("%s\n", argv[i]);
404 fd = open_file_or_dir(argv[i], &dirstream);
406 fprintf(stderr, "failed to open %s\n", argv[i]);
412 ret = ioctl(fd, BTRFS_IOC_DEFRAG, NULL);
415 ret = ioctl(fd, BTRFS_IOC_DEFRAG_RANGE, &range);
416 if (ret && errno == ENOTTY) {
417 fprintf(stderr, "ERROR: defrag range ioctl not "
418 "supported in this kernel, please try "
419 "without any options.\n");
427 fprintf(stderr, "ERROR: defrag failed on %s - %s\n",
428 argv[i], strerror(e));
431 close_file_or_dir(fd, dirstream);
434 printf("%s\n", BTRFS_BUILD_VERSION);
436 fprintf(stderr, "total %d failures\n", errors);
443 static const char * const cmd_resize_usage[] = {
444 "btrfs filesystem resize [devid:][+/-]<newsize>[gkm]|[devid:]max <path>",
445 "Resize a filesystem",
446 "If 'max' is passed, the filesystem will occupy all available space",
447 "on the device 'devid'.",
451 static int cmd_resize(int argc, char **argv)
453 struct btrfs_ioctl_vol_args args;
456 DIR *dirstream = NULL;
458 if (check_argc_exact(argc, 3))
459 usage(cmd_resize_usage);
464 len = strlen(amount);
465 if (len == 0 || len >= BTRFS_VOL_NAME_MAX) {
466 fprintf(stderr, "ERROR: size value too long ('%s)\n",
471 fd = open_file_or_dir(path, &dirstream);
473 fprintf(stderr, "ERROR: can't access to '%s'\n", path);
477 printf("Resize '%s' of '%s'\n", path, amount);
478 strncpy_null(args.name, amount);
479 res = ioctl(fd, BTRFS_IOC_RESIZE, &args);
481 close_file_or_dir(fd, dirstream);
483 fprintf(stderr, "ERROR: unable to resize '%s' - %s\n",
490 static const char * const cmd_label_usage[] = {
491 "btrfs filesystem label [<device>|<mountpoint>] [<newlabel>]",
492 "Get or change the label of a filesystem",
493 "With one argument, get the label of filesystem on <device>.",
494 "If <newlabel> is passed, set the filesystem label to <newlabel>.",
498 static int cmd_label(int argc, char **argv)
500 if (check_argc_min(argc, 2) || check_argc_max(argc, 3))
501 usage(cmd_label_usage);
504 return set_label(argv[1], argv[2]);
506 return get_label(argv[1]);
509 const struct cmd_group filesystem_cmd_group = {
510 filesystem_cmd_group_usage, NULL, {
511 { "df", cmd_df, cmd_df_usage, NULL, 0 },
512 { "show", cmd_show, cmd_show_usage, NULL, 0 },
513 { "sync", cmd_sync, cmd_sync_usage, NULL, 0 },
514 { "defragment", cmd_defrag, cmd_defrag_usage, NULL, 0 },
515 { "balance", cmd_balance, NULL, &balance_cmd_group, 1 },
516 { "resize", cmd_resize, cmd_resize_usage, NULL, 0 },
517 { "label", cmd_label, cmd_label_usage, NULL, 0 },
522 int cmd_filesystem(int argc, char **argv)
524 return handle_command_group(&filesystem_cmd_group, argc, argv);