btrfs-progs: canonicalize pathnames for device commands
[btrfs-progs-unstable/devel.git] / cmds-device.c
blobd7af0901362a7609947abc9517a37614b73bbdb9
1 /*
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.
17 #include <stdio.h>
18 #include <stdlib.h>
19 #include <string.h>
20 #include <unistd.h>
21 #include <fcntl.h>
22 #include <sys/ioctl.h>
23 #include <errno.h>
24 #include <sys/stat.h>
25 #include <getopt.h>
27 #include "kerncompat.h"
28 #include "ctree.h"
29 #include "ioctl.h"
30 #include "utils.h"
32 #include "commands.h"
34 static const char * const device_cmd_group_usage[] = {
35 "btrfs device <command> [<args>]",
36 NULL
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",
44 NULL
47 static int cmd_add_dev(int argc, char **argv)
49 char *mntpnt;
50 int i, fdmnt, ret=0, e;
51 DIR *dirstream = NULL;
52 int discard = 1;
53 int force = 0;
54 char estr[100];
56 while (1) {
57 int long_index;
58 static struct option long_options[] = {
59 { "nodiscard", optional_argument, NULL, 'K'},
60 { "force", no_argument, NULL, 'f'},
61 { 0, 0, 0, 0 }
63 int c = getopt_long(argc, argv, "Kf", long_options,
64 &long_index);
65 if (c < 0)
66 break;
67 switch (c) {
68 case 'K':
69 discard = 0;
70 break;
71 case 'f':
72 force = 1;
73 break;
74 default:
75 usage(cmd_add_dev_usage);
79 argc = argc - optind;
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);
87 if (fdmnt < 0) {
88 fprintf(stderr, "ERROR: can't access '%s'\n", mntpnt);
89 return 1;
92 for (i = optind; i < optind + argc - 1; i++){
93 struct btrfs_ioctl_vol_args ioctl_args;
94 int devfd, res;
95 u64 dev_block_count = 0;
96 int mixed = 0;
97 char *path;
99 res = test_dev_for_mkfs(argv[i], force, estr);
100 if (res) {
101 fprintf(stderr, "%s", estr);
102 ret++;
103 continue;
106 devfd = open(argv[i], O_RDWR);
107 if (devfd < 0) {
108 fprintf(stderr, "ERROR: Unable to open device '%s'\n", argv[i]);
109 ret++;
110 continue;
113 res = btrfs_prepare_device(devfd, argv[i], 1, &dev_block_count,
114 0, &mixed, discard);
115 close(devfd);
116 if (res) {
117 ret++;
118 goto error_out;
121 path = canonicalize_path(argv[i]);
122 if (!path) {
123 fprintf(stderr,
124 "ERROR: Could not canonicalize pathname '%s': %s\n",
125 argv[i], strerror(errno));
126 ret++;
127 goto error_out;
130 strncpy_null(ioctl_args.name, path);
131 res = ioctl(fdmnt, BTRFS_IOC_ADD_DEV, &ioctl_args);
132 e = errno;
133 if (res < 0) {
134 fprintf(stderr, "ERROR: error adding the device '%s' - %s\n",
135 path, strerror(e));
136 ret++;
138 free(path);
141 error_out:
142 close_file_or_dir(fdmnt, dirstream);
143 return !!ret;
146 static const char * const cmd_rm_dev_usage[] = {
147 "btrfs device delete <device> [<device>...] <path>",
148 "Remove a device from a filesystem",
149 NULL
152 static int cmd_rm_dev(int argc, char **argv)
154 char *mntpnt;
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);
164 if (fdmnt < 0) {
165 fprintf(stderr, "ERROR: can't access '%s'\n", mntpnt);
166 return 1;
169 for(i=1 ; i < argc - 1; i++ ){
170 struct btrfs_ioctl_vol_args arg;
171 int res;
173 if (!is_block_device(argv[i])) {
174 fprintf(stderr,
175 "ERROR: %s is not a block device\n", argv[i]);
176 ret++;
177 continue;
179 strncpy_null(arg.name, argv[i]);
180 res = ioctl(fdmnt, BTRFS_IOC_RM_DEV, &arg);
181 e = errno;
182 if (res > 0) {
183 fprintf(stderr,
184 "ERROR: error removing the device '%s' - %s\n",
185 argv[i], btrfs_err_str(res));
186 ret++;
187 } else if (res < 0) {
188 fprintf(stderr,
189 "ERROR: error removing the device '%s' - %s\n",
190 argv[i], strerror(e));
191 ret++;
195 close_file_or_dir(fdmnt, dirstream);
196 return !!ret;
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 NULL
205 static int cmd_scan_dev(int argc, char **argv)
207 int i, fd, e;
208 int where = BTRFS_SCAN_LBLKID;
209 int devstart = 1;
210 int all = 0;
211 int ret = 0;
213 optind = 1;
214 while (1) {
215 int long_index;
216 static struct option long_options[] = {
217 { "all-devices", no_argument, NULL, 'd'},
218 { 0, 0, 0, 0 },
220 int c = getopt_long(argc, argv, "d", long_options,
221 &long_index);
222 if (c < 0)
223 break;
224 switch (c) {
225 case 'd':
226 where = BTRFS_SCAN_DEV;
227 all = 1;
228 break;
229 default:
230 usage(cmd_scan_dev_usage);
234 if (all && check_argc_max(argc, 2))
235 usage(cmd_scan_dev_usage);
237 if (all || argc == 1) {
238 printf("Scanning for Btrfs filesystems\n");
239 ret = scan_for_btrfs(where, BTRFS_UPDATE_KERNEL);
240 if (ret)
241 fprintf(stderr, "ERROR: error %d while scanning\n", ret);
242 goto out;
245 fd = open("/dev/btrfs-control", O_RDWR);
246 if (fd < 0) {
247 perror("failed to open /dev/btrfs-control");
248 ret = 1;
249 goto out;
252 for( i = devstart ; i < argc ; i++ ){
253 struct btrfs_ioctl_vol_args args;
254 char *path;
256 if (!is_block_device(argv[i])) {
257 fprintf(stderr,
258 "ERROR: %s is not a block device\n", argv[i]);
259 ret = 1;
260 goto close_out;
262 path = canonicalize_path(argv[i]);
263 if (!path) {
264 fprintf(stderr,
265 "ERROR: Could not canonicalize path '%s': %s\n",
266 argv[i], strerror(errno));
267 ret = 1;
268 goto close_out;
270 printf("Scanning for Btrfs filesystems in '%s'\n", path);
272 strncpy_null(args.name, path);
274 * FIXME: which are the error code returned by this ioctl ?
275 * it seems that is impossible to understand if there no is
276 * a btrfs filesystem from an I/O error !!!
278 ret = ioctl(fd, BTRFS_IOC_SCAN_DEV, &args);
279 e = errno;
281 if( ret < 0 ){
282 fprintf(stderr, "ERROR: unable to scan the device '%s' - %s\n",
283 path, strerror(e));
284 free(path);
285 goto close_out;
287 free(path);
290 close_out:
291 close(fd);
292 out:
293 return !!ret;
296 static const char * const cmd_ready_dev_usage[] = {
297 "btrfs device ready <device>",
298 "Check device to see if it has all of it's devices in cache for mounting",
299 NULL
302 static int cmd_ready_dev(int argc, char **argv)
304 struct btrfs_ioctl_vol_args args;
305 int fd;
306 int ret;
307 char *path;
309 if (check_argc_min(argc, 2))
310 usage(cmd_ready_dev_usage);
312 fd = open("/dev/btrfs-control", O_RDWR);
313 if (fd < 0) {
314 perror("failed to open /dev/btrfs-control");
315 return 1;
318 path = canonicalize_path(argv[argc - 1]);
319 if (!path) {
320 fprintf(stderr,
321 "ERROR: Could not canonicalize pathname '%s': %s\n",
322 argv[argc - 1], strerror(errno));
323 ret = 1;
324 goto out;
327 if (!is_block_device(path)) {
328 fprintf(stderr,
329 "ERROR: %s is not a block device\n", path);
330 ret = 1;
331 goto out;
334 strncpy(args.name, path, BTRFS_PATH_NAME_MAX);
335 ret = ioctl(fd, BTRFS_IOC_DEVICES_READY, &args);
336 if (ret < 0) {
337 fprintf(stderr, "ERROR: unable to determine if the device '%s'"
338 " is ready for mounting - %s\n", path,
339 strerror(errno));
340 ret = 1;
343 out:
344 free(path);
345 close(fd);
346 return ret;
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.",
352 NULL
355 static int cmd_dev_stats(int argc, char **argv)
357 char *dev_path;
358 struct btrfs_ioctl_fs_info_args fi_args;
359 struct btrfs_ioctl_dev_info_args *di_args = NULL;
360 int ret;
361 int fdmnt;
362 int i;
363 int c;
364 int err = 0;
365 __u64 flags = 0;
366 DIR *dirstream = NULL;
368 optind = 1;
369 while ((c = getopt(argc, argv, "z")) != -1) {
370 switch (c) {
371 case 'z':
372 flags = BTRFS_DEV_STATS_RESET;
373 break;
374 case '?':
375 default:
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);
388 if (fdmnt < 0) {
389 if (errno == EINVAL)
390 fprintf(stderr,
391 "ERROR: '%s' is not a mounted btrfs device\n",
392 dev_path);
393 else
394 fprintf(stderr, "ERROR: can't access '%s': %s\n",
395 dev_path, strerror(errno));
396 return 1;
399 ret = get_fs_info(dev_path, &fi_args, &di_args);
400 if (ret) {
401 fprintf(stderr, "ERROR: getting dev info for devstats failed: "
402 "%s\n", strerror(-ret));
403 err = 1;
404 goto out;
406 if (!fi_args.num_devices) {
407 fprintf(stderr, "ERROR: no devices found\n");
408 err = 1;
409 goto out;
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;
422 args.flags = flags;
424 if (ioctl(fdmnt, BTRFS_IOC_GET_DEV_STATS, &args) < 0) {
425 fprintf(stderr,
426 "ERROR: ioctl(BTRFS_IOC_GET_DEV_STATS) on %s failed: %s\n",
427 path, strerror(errno));
428 err = 1;
429 } else {
430 if (args.nr_items >= BTRFS_DEV_STAT_WRITE_ERRS + 1)
431 printf("[%s].write_io_errs %llu\n",
432 path,
433 (unsigned long long) args.values[
434 BTRFS_DEV_STAT_WRITE_ERRS]);
435 if (args.nr_items >= BTRFS_DEV_STAT_READ_ERRS + 1)
436 printf("[%s].read_io_errs %llu\n",
437 path,
438 (unsigned long long) args.values[
439 BTRFS_DEV_STAT_READ_ERRS]);
440 if (args.nr_items >= BTRFS_DEV_STAT_FLUSH_ERRS + 1)
441 printf("[%s].flush_io_errs %llu\n",
442 path,
443 (unsigned long long) args.values[
444 BTRFS_DEV_STAT_FLUSH_ERRS]);
445 if (args.nr_items >= BTRFS_DEV_STAT_CORRUPTION_ERRS + 1)
446 printf("[%s].corruption_errs %llu\n",
447 path,
448 (unsigned long long) args.values[
449 BTRFS_DEV_STAT_CORRUPTION_ERRS]);
450 if (args.nr_items >= BTRFS_DEV_STAT_GENERATION_ERRS + 1)
451 printf("[%s].generation_errs %llu\n",
452 path,
453 (unsigned long long) args.values[
454 BTRFS_DEV_STAT_GENERATION_ERRS]);
458 out:
459 free(di_args);
460 close_file_or_dir(fdmnt, dirstream);
462 return err;
465 const struct cmd_group device_cmd_group = {
466 device_cmd_group_usage, NULL, {
467 { "add", cmd_add_dev, cmd_add_dev_usage, NULL, 0 },
468 { "delete", cmd_rm_dev, cmd_rm_dev_usage, NULL, 0 },
469 { "scan", cmd_scan_dev, cmd_scan_dev_usage, NULL, 0 },
470 { "ready", cmd_ready_dev, cmd_ready_dev_usage, NULL, 0 },
471 { "stats", cmd_dev_stats, cmd_dev_stats_usage, NULL, 0 },
472 NULL_CMD_STRUCT
476 int cmd_device(int argc, char **argv)
478 return handle_command_group(&device_cmd_group, argc, argv);