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 to '%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;
98 res = test_dev_for_mkfs(argv[i], force, estr);
100 fprintf(stderr, "%s", estr);
104 devfd = open(argv[i], O_RDWR);
106 fprintf(stderr, "ERROR: Unable to open device '%s'\n", argv[i]);
111 res = btrfs_prepare_device(devfd, argv[i], 1, &dev_block_count,
114 fprintf(stderr, "ERROR: Unable to init '%s'\n", argv[i]);
121 strncpy_null(ioctl_args.name, argv[i]);
122 res = ioctl(fdmnt, BTRFS_IOC_ADD_DEV, &ioctl_args);
125 fprintf(stderr, "ERROR: error adding the device '%s' - %s\n",
126 argv[i], strerror(e));
132 close_file_or_dir(fdmnt, dirstream);
136 static const char * const cmd_rm_dev_usage[] = {
137 "btrfs device delete <device> [<device>...] <path>",
138 "Remove a device from a filesystem",
142 static int cmd_rm_dev(int argc, char **argv)
145 int i, fdmnt, ret=0, e;
146 DIR *dirstream = NULL;
148 if (check_argc_min(argc, 3))
149 usage(cmd_rm_dev_usage);
151 mntpnt = argv[argc - 1];
153 fdmnt = open_file_or_dir(mntpnt, &dirstream);
155 fprintf(stderr, "ERROR: can't access to '%s'\n", mntpnt);
159 for(i=1 ; i < argc - 1; i++ ){
160 struct btrfs_ioctl_vol_args arg;
163 strncpy_null(arg.name, argv[i]);
164 res = ioctl(fdmnt, BTRFS_IOC_RM_DEV, &arg);
168 "ERROR: error removing the device '%s' - %s\n",
169 argv[i], btrfs_err_str(res));
171 } else if (res < 0) {
173 "ERROR: error removing the device '%s' - %s\n",
174 argv[i], strerror(e));
179 close_file_or_dir(fdmnt, dirstream);
183 static const char * const cmd_scan_dev_usage[] = {
184 "btrfs device scan [<--all-devices>|<device> [<device>...]]",
185 "Scan devices for a btrfs filesystem",
189 static int cmd_scan_dev(int argc, char **argv)
192 int where = BTRFS_SCAN_LBLKID;
195 if( argc > 1 && !strcmp(argv[1],"--all-devices")){
196 if (check_argc_max(argc, 2))
197 usage(cmd_scan_dev_usage);
199 where = BTRFS_SCAN_DEV;
205 printf("Scanning for Btrfs filesystems\n");
206 ret = scan_for_btrfs(where, 1);
208 fprintf(stderr, "ERROR: error %d while scanning\n", ret);
214 fd = open("/dev/btrfs-control", O_RDWR);
216 perror("failed to open /dev/btrfs-control");
220 for( i = devstart ; i < argc ; i++ ){
221 struct btrfs_ioctl_vol_args args;
224 printf("Scanning for Btrfs filesystems in '%s'\n", argv[i]);
226 strncpy_null(args.name, argv[i]);
228 * FIXME: which are the error code returned by this ioctl ?
229 * it seems that is impossible to understand if there no is
230 * a btrfs filesystem from an I/O error !!!
232 ret = ioctl(fd, BTRFS_IOC_SCAN_DEV, &args);
237 fprintf(stderr, "ERROR: unable to scan the device '%s' - %s\n",
238 argv[i], strerror(e));
247 static const char * const cmd_ready_dev_usage[] = {
248 "btrfs device ready <device>",
249 "Check device to see if it has all of it's devices in cache for mounting",
253 static int cmd_ready_dev(int argc, char **argv)
255 struct btrfs_ioctl_vol_args args;
259 if (check_argc_min(argc, 2))
260 usage(cmd_ready_dev_usage);
262 fd = open("/dev/btrfs-control", O_RDWR);
264 perror("failed to open /dev/btrfs-control");
268 strncpy(args.name, argv[argc - 1], BTRFS_PATH_NAME_MAX);
269 ret = ioctl(fd, BTRFS_IOC_DEVICES_READY, &args);
271 fprintf(stderr, "ERROR: unable to determine if the device '%s'"
272 " is ready for mounting - %s\n", argv[argc - 1],
281 static const char * const cmd_dev_stats_usage[] = {
282 "btrfs device stats [-z] <path>|<device>",
283 "Show current device IO stats. -z to reset stats afterwards.",
287 static int cmd_dev_stats(int argc, char **argv)
290 struct btrfs_ioctl_fs_info_args fi_args;
291 struct btrfs_ioctl_dev_info_args *di_args = NULL;
298 DIR *dirstream = NULL;
301 while ((c = getopt(argc, argv, "z")) != -1) {
304 flags = BTRFS_DEV_STATS_RESET;
308 fprintf(stderr, "ERROR: device stat args invalid.\n"
309 " device stat [-z] <path>|<device>\n"
310 " -z to reset stats after reading.\n");
315 if (optind + 1 != argc) {
316 fprintf(stderr, "ERROR: device stat needs path|device as single"
321 dev_path = argv[optind];
323 fdmnt = open_path_or_dev_mnt(dev_path, &dirstream);
326 fprintf(stderr, "ERROR: can't access '%s'\n", dev_path);
330 ret = get_fs_info(dev_path, &fi_args, &di_args);
332 fprintf(stderr, "ERROR: getting dev info for devstats failed: "
333 "%s\n", strerror(-ret));
337 if (!fi_args.num_devices) {
338 fprintf(stderr, "ERROR: no devices found\n");
343 for (i = 0; i < fi_args.num_devices; i++) {
344 struct btrfs_ioctl_get_dev_stats args = {0};
345 __u8 path[BTRFS_DEVICE_PATH_NAME_MAX + 1];
347 strncpy((char *)path, (char *)di_args[i].path,
348 BTRFS_DEVICE_PATH_NAME_MAX);
349 path[BTRFS_DEVICE_PATH_NAME_MAX] = '\0';
351 args.devid = di_args[i].devid;
352 args.nr_items = BTRFS_DEV_STAT_VALUES_MAX;
355 if (ioctl(fdmnt, BTRFS_IOC_GET_DEV_STATS, &args) < 0) {
357 "ERROR: ioctl(BTRFS_IOC_GET_DEV_STATS) on %s failed: %s\n",
358 path, strerror(errno));
361 if (args.nr_items >= BTRFS_DEV_STAT_WRITE_ERRS + 1)
362 printf("[%s].write_io_errs %llu\n",
364 (unsigned long long) args.values[
365 BTRFS_DEV_STAT_WRITE_ERRS]);
366 if (args.nr_items >= BTRFS_DEV_STAT_READ_ERRS + 1)
367 printf("[%s].read_io_errs %llu\n",
369 (unsigned long long) args.values[
370 BTRFS_DEV_STAT_READ_ERRS]);
371 if (args.nr_items >= BTRFS_DEV_STAT_FLUSH_ERRS + 1)
372 printf("[%s].flush_io_errs %llu\n",
374 (unsigned long long) args.values[
375 BTRFS_DEV_STAT_FLUSH_ERRS]);
376 if (args.nr_items >= BTRFS_DEV_STAT_CORRUPTION_ERRS + 1)
377 printf("[%s].corruption_errs %llu\n",
379 (unsigned long long) args.values[
380 BTRFS_DEV_STAT_CORRUPTION_ERRS]);
381 if (args.nr_items >= BTRFS_DEV_STAT_GENERATION_ERRS + 1)
382 printf("[%s].generation_errs %llu\n",
384 (unsigned long long) args.values[
385 BTRFS_DEV_STAT_GENERATION_ERRS]);
391 close_file_or_dir(fdmnt, dirstream);
396 const struct cmd_group device_cmd_group = {
397 device_cmd_group_usage, NULL, {
398 { "add", cmd_add_dev, cmd_add_dev_usage, NULL, 0 },
399 { "delete", cmd_rm_dev, cmd_rm_dev_usage, NULL, 0 },
400 { "scan", cmd_scan_dev, cmd_scan_dev_usage, NULL, 0 },
401 { "ready", cmd_ready_dev, cmd_ready_dev_usage, NULL, 0 },
402 { "stats", cmd_dev_stats, cmd_dev_stats_usage, NULL, 0 },
407 int cmd_device(int argc, char **argv)
409 return handle_command_group(&device_cmd_group, argc, argv);