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.
22 #include <sys/ioctl.h>
27 #include "kerncompat.h"
31 #include "cmds-fi-usage.h"
35 static const char * const device_cmd_group_usage[] = {
36 "btrfs device <command> [<args>]",
40 static const char * const cmd_add_dev_usage[] = {
41 "btrfs device add [options] <device> [<device>...] <path>",
42 "Add a device to a filesystem",
43 "-K|--nodiscard do not perform whole device TRIM",
44 "-f|--force force overwrite existing filesystem on the disk",
48 static int cmd_add_dev(int argc, char **argv)
51 int i, fdmnt, ret=0, e;
52 DIR *dirstream = NULL;
58 static const struct option long_options[] = {
59 { "nodiscard", optional_argument, NULL, 'K'},
60 { "force", no_argument, NULL, 'f'},
64 c = getopt_long(argc, argv, "Kf", long_options, NULL);
75 usage(cmd_add_dev_usage);
81 if (check_argc_min(argc, 2))
82 usage(cmd_add_dev_usage);
84 mntpnt = argv[optind + argc - 1];
86 fdmnt = open_file_or_dir(mntpnt, &dirstream);
88 fprintf(stderr, "ERROR: can't access '%s'\n", mntpnt);
92 for (i = optind; i < optind + argc - 1; i++){
93 struct btrfs_ioctl_vol_args ioctl_args;
95 u64 dev_block_count = 0;
99 res = test_dev_for_mkfs(argv[i], force);
105 devfd = open(argv[i], O_RDWR);
107 fprintf(stderr, "ERROR: Unable to open device '%s'\n", argv[i]);
112 res = btrfs_prepare_device(devfd, argv[i], 1, &dev_block_count,
120 path = canonicalize_path(argv[i]);
123 "ERROR: Could not canonicalize pathname '%s': %s\n",
124 argv[i], strerror(errno));
129 memset(&ioctl_args, 0, sizeof(ioctl_args));
130 strncpy_null(ioctl_args.name, path);
131 res = ioctl(fdmnt, BTRFS_IOC_ADD_DEV, &ioctl_args);
134 fprintf(stderr, "ERROR: error adding the device '%s' - %s\n",
142 close_file_or_dir(fdmnt, dirstream);
146 static int _cmd_rm_dev(int argc, char **argv, const char * const *usagestr)
149 int i, fdmnt, ret=0, e;
150 DIR *dirstream = NULL;
152 if (check_argc_min(argc, 3))
155 mntpnt = argv[argc - 1];
157 fdmnt = open_file_or_dir(mntpnt, &dirstream);
159 fprintf(stderr, "ERROR: can't access '%s'\n", mntpnt);
163 for(i=1 ; i < argc - 1; i++ ){
164 struct btrfs_ioctl_vol_args arg;
167 if (!is_block_device(argv[i])) {
169 "ERROR: %s is not a block device\n", argv[i]);
173 memset(&arg, 0, sizeof(arg));
174 strncpy_null(arg.name, argv[i]);
175 res = ioctl(fdmnt, BTRFS_IOC_RM_DEV, &arg);
181 msg = btrfs_err_str(res);
185 "ERROR: error removing the device '%s' - %s\n",
191 close_file_or_dir(fdmnt, dirstream);
195 static const char * const cmd_rm_dev_usage[] = {
196 "btrfs device remove <device> [<device>...] <path>",
197 "Remove a device from a filesystem",
201 static int cmd_rm_dev(int argc, char **argv)
203 return _cmd_rm_dev(argc, argv, cmd_rm_dev_usage);
206 static const char * const cmd_del_dev_usage[] = {
207 "btrfs device delete <device> [<device>...] <path>",
208 "Remove a device from a filesystem",
212 static int cmd_del_dev(int argc, char **argv)
214 return _cmd_rm_dev(argc, argv, cmd_del_dev_usage);
217 static const char * const cmd_scan_dev_usage[] = {
218 "btrfs device scan [(-d|--all-devices)|<device> [<device>...]]",
219 "Scan devices for a btrfs filesystem",
220 " -d|--all-devices (deprecated)",
224 static int cmd_scan_dev(int argc, char **argv)
234 static const struct option long_options[] = {
235 { "all-devices", no_argument, NULL, 'd'},
239 c = getopt_long(argc, argv, "d", long_options, NULL);
247 usage(cmd_scan_dev_usage);
251 if (all && check_argc_max(argc, 2))
252 usage(cmd_scan_dev_usage);
254 if (all || argc == 1) {
255 printf("Scanning for Btrfs filesystems\n");
256 ret = btrfs_scan_lblkid();
258 fprintf(stderr, "ERROR: error %d while scanning\n", ret);
259 ret = btrfs_register_all_devices();
261 fprintf(stderr, "ERROR: error %d while registering\n", ret);
265 for( i = devstart ; i < argc ; i++ ){
268 if (!is_block_device(argv[i])) {
270 "ERROR: %s is not a block device\n", argv[i]);
274 path = canonicalize_path(argv[i]);
277 "ERROR: Could not canonicalize path '%s': %s\n",
278 argv[i], strerror(errno));
282 printf("Scanning for Btrfs filesystems in '%s'\n", path);
283 if (btrfs_register_one_device(path) != 0) {
295 static const char * const cmd_ready_dev_usage[] = {
296 "btrfs device ready <device>",
297 "Check device to see if it has all of its devices in cache for mounting",
301 static int cmd_ready_dev(int argc, char **argv)
303 struct btrfs_ioctl_vol_args args;
308 if (check_argc_min(argc, 2))
309 usage(cmd_ready_dev_usage);
311 fd = open("/dev/btrfs-control", O_RDWR);
313 perror("failed to open /dev/btrfs-control");
317 path = canonicalize_path(argv[argc - 1]);
320 "ERROR: Could not canonicalize pathname '%s': %s\n",
321 argv[argc - 1], strerror(errno));
326 if (!is_block_device(path)) {
328 "ERROR: %s is not a block device\n", path);
333 memset(&args, 0, sizeof(args));
334 strncpy_null(args.name, path);
335 ret = ioctl(fd, BTRFS_IOC_DEVICES_READY, &args);
337 fprintf(stderr, "ERROR: unable to determine if the device '%s'"
338 " is ready for mounting - %s\n", path,
349 static const char * const cmd_dev_stats_usage[] = {
350 "btrfs device stats [-z] <path>|<device>",
351 "Show current device IO stats. -z to reset stats afterwards.",
355 static int cmd_dev_stats(int argc, char **argv)
358 struct btrfs_ioctl_fs_info_args fi_args;
359 struct btrfs_ioctl_dev_info_args *di_args = NULL;
366 DIR *dirstream = NULL;
369 while ((c = getopt(argc, argv, "z")) != -1) {
372 flags = BTRFS_DEV_STATS_RESET;
376 usage(cmd_dev_stats_usage);
380 argc = argc - optind;
381 if (check_argc_exact(argc, 1))
382 usage(cmd_dev_stats_usage);
384 dev_path = argv[optind];
386 fdmnt = open_path_or_dev_mnt(dev_path, &dirstream);
391 "ERROR: '%s' is not a mounted btrfs device\n",
394 fprintf(stderr, "ERROR: can't access '%s': %s\n",
395 dev_path, strerror(errno));
399 ret = get_fs_info(dev_path, &fi_args, &di_args);
401 fprintf(stderr, "ERROR: getting dev info for devstats failed: "
402 "%s\n", strerror(-ret));
406 if (!fi_args.num_devices) {
407 fprintf(stderr, "ERROR: no devices found\n");
412 for (i = 0; i < fi_args.num_devices; i++) {
413 struct btrfs_ioctl_get_dev_stats args = {0};
414 __u8 path[BTRFS_DEVICE_PATH_NAME_MAX + 1];
416 strncpy((char *)path, (char *)di_args[i].path,
417 BTRFS_DEVICE_PATH_NAME_MAX);
418 path[BTRFS_DEVICE_PATH_NAME_MAX] = '\0';
420 args.devid = di_args[i].devid;
421 args.nr_items = BTRFS_DEV_STAT_VALUES_MAX;
424 if (ioctl(fdmnt, BTRFS_IOC_GET_DEV_STATS, &args) < 0) {
426 "ERROR: ioctl(BTRFS_IOC_GET_DEV_STATS) on %s failed: %s\n",
427 path, strerror(errno));
430 char *canonical_path;
432 canonical_path = canonicalize_path((char *)path);
434 if (args.nr_items >= BTRFS_DEV_STAT_WRITE_ERRS + 1)
435 printf("[%s].write_io_errs %llu\n",
437 (unsigned long long) args.values[
438 BTRFS_DEV_STAT_WRITE_ERRS]);
439 if (args.nr_items >= BTRFS_DEV_STAT_READ_ERRS + 1)
440 printf("[%s].read_io_errs %llu\n",
442 (unsigned long long) args.values[
443 BTRFS_DEV_STAT_READ_ERRS]);
444 if (args.nr_items >= BTRFS_DEV_STAT_FLUSH_ERRS + 1)
445 printf("[%s].flush_io_errs %llu\n",
447 (unsigned long long) args.values[
448 BTRFS_DEV_STAT_FLUSH_ERRS]);
449 if (args.nr_items >= BTRFS_DEV_STAT_CORRUPTION_ERRS + 1)
450 printf("[%s].corruption_errs %llu\n",
452 (unsigned long long) args.values[
453 BTRFS_DEV_STAT_CORRUPTION_ERRS]);
454 if (args.nr_items >= BTRFS_DEV_STAT_GENERATION_ERRS + 1)
455 printf("[%s].generation_errs %llu\n",
457 (unsigned long long) args.values[
458 BTRFS_DEV_STAT_GENERATION_ERRS]);
460 free(canonical_path);
466 close_file_or_dir(fdmnt, dirstream);
471 const char * const cmd_device_usage_usage[] = {
472 "btrfs device usage [options] <path> [<path>..]",
473 "Show detailed information about internal allocations in devices.",
474 "-b|--raw raw numbers in bytes",
475 "-h|--human-readable",
476 " human friendly numbers, base 1024 (default)",
477 "-H human friendly numbers, base 1000",
478 "--iec use 1024 as a base (KiB, MiB, GiB, TiB)",
479 "--si use 1000 as a base (kB, MB, GB, TB)",
480 "-k|--kbytes show sizes in KiB, or kB with --si",
481 "-m|--mbytes show sizes in MiB, or MB with --si",
482 "-g|--gbytes show sizes in GiB, or GB with --si",
483 "-t|--tbytes show sizes in TiB, or TB with --si",
487 static int _cmd_device_usage(int fd, char *path, unsigned unit_mode)
491 struct chunk_info *chunkinfo = NULL;
492 struct device_info *devinfo = NULL;
496 ret = load_chunk_and_device_info(fd, &chunkinfo, &chunkcount, &devinfo,
501 for (i = 0; i < devcount; i++) {
502 printf("%s, ID: %llu\n", devinfo[i].path, devinfo[i].devid);
503 print_device_sizes(fd, &devinfo[i], unit_mode);
504 print_device_chunks(fd, &devinfo[i], chunkinfo, chunkcount,
516 int cmd_device_usage(int argc, char **argv)
518 unsigned unit_mode = UNITS_DEFAULT;
520 int i, more_than_one = 0;
525 static const struct option long_options[] = {
526 { "raw", no_argument, NULL, 'b'},
527 { "kbytes", no_argument, NULL, 'k'},
528 { "mbytes", no_argument, NULL, 'm'},
529 { "gbytes", no_argument, NULL, 'g'},
530 { "tbytes", no_argument, NULL, 't'},
531 { "si", no_argument, NULL, GETOPT_VAL_SI},
532 { "iec", no_argument, NULL, GETOPT_VAL_IEC},
533 { "human-readable", no_argument, NULL,
534 GETOPT_VAL_HUMAN_READABLE},
538 c = getopt_long(argc, argv, "bhHkmgt", long_options, NULL);
543 unit_mode = UNITS_RAW;
546 units_set_base(&unit_mode, UNITS_KBYTES);
549 units_set_base(&unit_mode, UNITS_MBYTES);
552 units_set_base(&unit_mode, UNITS_GBYTES);
555 units_set_base(&unit_mode, UNITS_TBYTES);
557 case GETOPT_VAL_HUMAN_READABLE:
559 unit_mode = UNITS_HUMAN_BINARY;
562 unit_mode = UNITS_HUMAN_DECIMAL;
565 units_set_mode(&unit_mode, UNITS_DECIMAL);
568 units_set_mode(&unit_mode, UNITS_BINARY);
571 usage(cmd_device_usage_usage);
575 if (check_argc_min(argc - optind, 1))
576 usage(cmd_device_usage_usage);
578 for (i = optind; i < argc ; i++) {
580 DIR *dirstream = NULL;
584 fd = open_file_or_dir(argv[i], &dirstream);
586 fprintf(stderr, "ERROR: can't access '%s'\n",
592 ret = _cmd_device_usage(fd, argv[i], unit_mode);
593 close_file_or_dir(fd, dirstream);
603 static const char device_cmd_group_info[] =
604 "manage and query devices in the filesystem";
606 const struct cmd_group device_cmd_group = {
607 device_cmd_group_usage, device_cmd_group_info, {
608 { "add", cmd_add_dev, cmd_add_dev_usage, NULL, 0 },
609 { "delete", cmd_del_dev, cmd_del_dev_usage, NULL, CMD_ALIAS },
610 { "remove", cmd_rm_dev, cmd_rm_dev_usage, NULL, 0 },
611 { "scan", cmd_scan_dev, cmd_scan_dev_usage, NULL, 0 },
612 { "ready", cmd_ready_dev, cmd_ready_dev_usage, NULL, 0 },
613 { "stats", cmd_dev_stats, cmd_dev_stats_usage, NULL, 0 },
614 { "usage", cmd_device_usage,
615 cmd_device_usage_usage, NULL, 0 },
620 int cmd_device(int argc, char **argv)
622 return handle_command_group(&device_cmd_group, argc, argv);