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"
34 static const char * const device_cmd_group_usage[] = {
35 "btrfs device <command> [<args>]",
39 static const char * const cmd_add_dev_usage[] = {
40 "btrfs device add [options] <device> [<device>...] <path>",
41 "Add a device to a filesystem",
42 "-K|--nodiscard do not perform whole device TRIM",
43 "-f|--force force overwrite existing filesystem on the disk",
47 static int cmd_add_dev(int argc, char **argv)
50 int i, fdmnt, ret=0, e;
51 DIR *dirstream = NULL;
58 static struct option long_options[] = {
59 { "nodiscard", optional_argument, NULL, 'K'},
60 { "force", no_argument, NULL, 'f'},
63 int c = getopt_long(argc, argv, "Kf", long_options,
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, estr);
101 fprintf(stderr, "%s", estr);
106 devfd = open(argv[i], O_RDWR);
108 fprintf(stderr, "ERROR: Unable to open device '%s'\n", argv[i]);
113 res = btrfs_prepare_device(devfd, argv[i], 1, &dev_block_count,
121 path = canonicalize_path(argv[i]);
124 "ERROR: Could not canonicalize pathname '%s': %s\n",
125 argv[i], strerror(errno));
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 const char * const cmd_rm_dev_usage[] = {
147 "btrfs device delete <device> [<device>...] <path>",
148 "Remove a device from a filesystem",
152 static int cmd_rm_dev(int argc, char **argv)
155 int i, fdmnt, ret=0, e;
156 DIR *dirstream = NULL;
158 if (check_argc_min(argc, 3))
159 usage(cmd_rm_dev_usage);
161 mntpnt = argv[argc - 1];
163 fdmnt = open_file_or_dir(mntpnt, &dirstream);
165 fprintf(stderr, "ERROR: can't access '%s'\n", mntpnt);
169 for(i=1 ; i < argc - 1; i++ ){
170 struct btrfs_ioctl_vol_args arg;
173 if (!is_block_device(argv[i])) {
175 "ERROR: %s is not a block device\n", argv[i]);
179 strncpy_null(arg.name, argv[i]);
180 res = ioctl(fdmnt, BTRFS_IOC_RM_DEV, &arg);
184 "ERROR: error removing the device '%s' - %s\n",
185 argv[i], btrfs_err_str(res));
187 } else if (res < 0) {
189 "ERROR: error removing the device '%s' - %s\n",
190 argv[i], strerror(e));
195 close_file_or_dir(fdmnt, dirstream);
199 static const char * const cmd_scan_dev_usage[] = {
200 "btrfs device scan [(-d|--all-devices)|<device> [<device>...]]",
201 "Scan devices for a btrfs filesystem",
202 " -d|--all-devices (deprecated)",
206 static int cmd_scan_dev(int argc, char **argv)
216 static struct option long_options[] = {
217 { "all-devices", no_argument, NULL, 'd'},
220 int c = getopt_long(argc, argv, "d", long_options,
229 usage(cmd_scan_dev_usage);
233 if (all && check_argc_max(argc, 2))
234 usage(cmd_scan_dev_usage);
236 if (all || argc == 1) {
237 printf("Scanning for Btrfs filesystems\n");
238 ret = btrfs_scan_lblkid();
240 fprintf(stderr, "ERROR: error %d while scanning\n", ret);
241 ret = btrfs_register_all_devices();
243 fprintf(stderr, "ERROR: error %d while registering\n", ret);
247 for( i = devstart ; i < argc ; i++ ){
250 if (!is_block_device(argv[i])) {
252 "ERROR: %s is not a block device\n", argv[i]);
256 path = canonicalize_path(argv[i]);
259 "ERROR: Could not canonicalize path '%s': %s\n",
260 argv[i], strerror(errno));
264 printf("Scanning for Btrfs filesystems in '%s'\n", path);
265 if (btrfs_register_one_device(path) != 0) {
277 static const char * const cmd_ready_dev_usage[] = {
278 "btrfs device ready <device>",
279 "Check device to see if it has all of its devices in cache for mounting",
283 static int cmd_ready_dev(int argc, char **argv)
285 struct btrfs_ioctl_vol_args args;
290 if (check_argc_min(argc, 2))
291 usage(cmd_ready_dev_usage);
293 fd = open("/dev/btrfs-control", O_RDWR);
295 perror("failed to open /dev/btrfs-control");
299 path = canonicalize_path(argv[argc - 1]);
302 "ERROR: Could not canonicalize pathname '%s': %s\n",
303 argv[argc - 1], strerror(errno));
308 if (!is_block_device(path)) {
310 "ERROR: %s is not a block device\n", path);
315 strncpy(args.name, path, BTRFS_PATH_NAME_MAX);
316 ret = ioctl(fd, BTRFS_IOC_DEVICES_READY, &args);
318 fprintf(stderr, "ERROR: unable to determine if the device '%s'"
319 " is ready for mounting - %s\n", path,
330 static const char * const cmd_dev_stats_usage[] = {
331 "btrfs device stats [-z] <path>|<device>",
332 "Show current device IO stats. -z to reset stats afterwards.",
336 static int cmd_dev_stats(int argc, char **argv)
339 struct btrfs_ioctl_fs_info_args fi_args;
340 struct btrfs_ioctl_dev_info_args *di_args = NULL;
347 DIR *dirstream = NULL;
350 while ((c = getopt(argc, argv, "z")) != -1) {
353 flags = BTRFS_DEV_STATS_RESET;
357 usage(cmd_dev_stats_usage);
361 argc = argc - optind;
362 if (check_argc_exact(argc, 1))
363 usage(cmd_dev_stats_usage);
365 dev_path = argv[optind];
367 fdmnt = open_path_or_dev_mnt(dev_path, &dirstream);
372 "ERROR: '%s' is not a mounted btrfs device\n",
375 fprintf(stderr, "ERROR: can't access '%s': %s\n",
376 dev_path, strerror(errno));
380 ret = get_fs_info(dev_path, &fi_args, &di_args);
382 fprintf(stderr, "ERROR: getting dev info for devstats failed: "
383 "%s\n", strerror(-ret));
387 if (!fi_args.num_devices) {
388 fprintf(stderr, "ERROR: no devices found\n");
393 for (i = 0; i < fi_args.num_devices; i++) {
394 struct btrfs_ioctl_get_dev_stats args = {0};
395 __u8 path[BTRFS_DEVICE_PATH_NAME_MAX + 1];
397 strncpy((char *)path, (char *)di_args[i].path,
398 BTRFS_DEVICE_PATH_NAME_MAX);
399 path[BTRFS_DEVICE_PATH_NAME_MAX] = '\0';
401 args.devid = di_args[i].devid;
402 args.nr_items = BTRFS_DEV_STAT_VALUES_MAX;
405 if (ioctl(fdmnt, BTRFS_IOC_GET_DEV_STATS, &args) < 0) {
407 "ERROR: ioctl(BTRFS_IOC_GET_DEV_STATS) on %s failed: %s\n",
408 path, strerror(errno));
411 if (args.nr_items >= BTRFS_DEV_STAT_WRITE_ERRS + 1)
412 printf("[%s].write_io_errs %llu\n",
414 (unsigned long long) args.values[
415 BTRFS_DEV_STAT_WRITE_ERRS]);
416 if (args.nr_items >= BTRFS_DEV_STAT_READ_ERRS + 1)
417 printf("[%s].read_io_errs %llu\n",
419 (unsigned long long) args.values[
420 BTRFS_DEV_STAT_READ_ERRS]);
421 if (args.nr_items >= BTRFS_DEV_STAT_FLUSH_ERRS + 1)
422 printf("[%s].flush_io_errs %llu\n",
424 (unsigned long long) args.values[
425 BTRFS_DEV_STAT_FLUSH_ERRS]);
426 if (args.nr_items >= BTRFS_DEV_STAT_CORRUPTION_ERRS + 1)
427 printf("[%s].corruption_errs %llu\n",
429 (unsigned long long) args.values[
430 BTRFS_DEV_STAT_CORRUPTION_ERRS]);
431 if (args.nr_items >= BTRFS_DEV_STAT_GENERATION_ERRS + 1)
432 printf("[%s].generation_errs %llu\n",
434 (unsigned long long) args.values[
435 BTRFS_DEV_STAT_GENERATION_ERRS]);
441 close_file_or_dir(fdmnt, dirstream);
446 const struct cmd_group device_cmd_group = {
447 device_cmd_group_usage, NULL, {
448 { "add", cmd_add_dev, cmd_add_dev_usage, NULL, 0 },
449 { "delete", cmd_rm_dev, cmd_rm_dev_usage, NULL, 0 },
450 { "scan", cmd_scan_dev, cmd_scan_dev_usage, NULL, 0 },
451 { "ready", cmd_ready_dev, cmd_ready_dev_usage, NULL, 0 },
452 { "stats", cmd_dev_stats, cmd_dev_stats_usage, NULL, 0 },
457 int cmd_device(int argc, char **argv)
459 return handle_command_group(&device_cmd_group, argc, argv);