8a33634ef5005ea6858383c9bd83f70cfd9ccbe3
[platform/upstream/btrfs-progs.git] / cmds-device.c
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.
5  *
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.
10  *
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.
15  */
16
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>
26
27 #include "kerncompat.h"
28 #include "ctree.h"
29 #include "ioctl.h"
30 #include "utils.h"
31
32 #include "commands.h"
33
34 static const char * const device_cmd_group_usage[] = {
35         "btrfs device <command> [<args>]",
36         NULL
37 };
38
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
45 };
46
47 static int cmd_add_dev(int argc, char **argv)
48 {
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];
55
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 }
62                 };
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);
76                 }
77         }
78
79         argc = argc - optind;
80
81         if (check_argc_min(argc, 2))
82                 usage(cmd_add_dev_usage);
83
84         mntpnt = argv[optind + argc - 1];
85
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;
90         }
91
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;
98
99                 res = test_dev_for_mkfs(argv[i], force, estr);
100                 if (res) {
101                         fprintf(stderr, "%s", estr);
102                         ret++;
103                         continue;
104                 }
105
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;
111                 }
112
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;
119                 }
120
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;
128                 }
129
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++;
137                 }
138                 free(path);
139         }
140
141 error_out:
142         close_file_or_dir(fdmnt, dirstream);
143         return !!ret;
144 }
145
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
150 };
151
152 static int cmd_rm_dev(int argc, char **argv)
153 {
154         char    *mntpnt;
155         int     i, fdmnt, ret=0, e;
156         DIR     *dirstream = NULL;
157
158         if (check_argc_min(argc, 3))
159                 usage(cmd_rm_dev_usage);
160
161         mntpnt = argv[argc - 1];
162
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;
167         }
168
169         for(i=1 ; i < argc - 1; i++ ){
170                 struct  btrfs_ioctl_vol_args arg;
171                 int     res;
172
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;
178                 }
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++;
192                 }
193         }
194
195         close_file_or_dir(fdmnt, dirstream);
196         return !!ret;
197 }
198
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)",
203         NULL
204 };
205
206 static int cmd_scan_dev(int argc, char **argv)
207 {
208         int i;
209         int devstart = 1;
210         int all = 0;
211         int ret = 0;
212
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 },
219                 };
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                         all = 1;
227                         break;
228                 default:
229                         usage(cmd_scan_dev_usage);
230                 }
231         }
232
233         if (all && check_argc_max(argc, 2))
234                 usage(cmd_scan_dev_usage);
235
236         if (all || argc == 1) {
237                 printf("Scanning for Btrfs filesystems\n");
238                 ret = btrfs_scan_lblkid(BTRFS_UPDATE_KERNEL);
239                 if (ret)
240                         fprintf(stderr, "ERROR: error %d while scanning\n", ret);
241                 goto out;
242         }
243
244         for( i = devstart ; i < argc ; i++ ){
245                 char *path;
246
247                 if (!is_block_device(argv[i])) {
248                         fprintf(stderr,
249                                 "ERROR: %s is not a block device\n", argv[i]);
250                         ret = 1;
251                         goto out;
252                 }
253                 path = canonicalize_path(argv[i]);
254                 if (!path) {
255                         fprintf(stderr,
256                                 "ERROR: Could not canonicalize path '%s': %s\n",
257                                 argv[i], strerror(errno));
258                         ret = 1;
259                         goto out;
260                 }
261                 printf("Scanning for Btrfs filesystems in '%s'\n", path);
262                 if (btrfs_register_one_device(path) != 0) {
263                         ret = 1;
264                         free(path);
265                         goto out;
266                 }
267                 free(path);
268         }
269
270 out:
271         return !!ret;
272 }
273
274 static const char * const cmd_ready_dev_usage[] = {
275         "btrfs device ready <device>",
276         "Check device to see if it has all of its devices in cache for mounting",
277         NULL
278 };
279
280 static int cmd_ready_dev(int argc, char **argv)
281 {
282         struct  btrfs_ioctl_vol_args args;
283         int     fd;
284         int     ret;
285         char    *path;
286
287         if (check_argc_min(argc, 2))
288                 usage(cmd_ready_dev_usage);
289
290         fd = open("/dev/btrfs-control", O_RDWR);
291         if (fd < 0) {
292                 perror("failed to open /dev/btrfs-control");
293                 return 1;
294         }
295
296         path = canonicalize_path(argv[argc - 1]);
297         if (!path) {
298                 fprintf(stderr,
299                         "ERROR: Could not canonicalize pathname '%s': %s\n",
300                         argv[argc - 1], strerror(errno));
301                 ret = 1;
302                 goto out;
303         }
304
305         if (!is_block_device(path)) {
306                 fprintf(stderr,
307                         "ERROR: %s is not a block device\n", path);
308                 ret = 1;
309                 goto out;
310         }
311
312         strncpy(args.name, path, BTRFS_PATH_NAME_MAX);
313         ret = ioctl(fd, BTRFS_IOC_DEVICES_READY, &args);
314         if (ret < 0) {
315                 fprintf(stderr, "ERROR: unable to determine if the device '%s'"
316                         " is ready for mounting - %s\n", path,
317                         strerror(errno));
318                 ret = 1;
319         }
320
321 out:
322         free(path);
323         close(fd);
324         return ret;
325 }
326
327 static const char * const cmd_dev_stats_usage[] = {
328         "btrfs device stats [-z] <path>|<device>",
329         "Show current device IO stats. -z to reset stats afterwards.",
330         NULL
331 };
332
333 static int cmd_dev_stats(int argc, char **argv)
334 {
335         char *dev_path;
336         struct btrfs_ioctl_fs_info_args fi_args;
337         struct btrfs_ioctl_dev_info_args *di_args = NULL;
338         int ret;
339         int fdmnt;
340         int i;
341         int c;
342         int err = 0;
343         __u64 flags = 0;
344         DIR *dirstream = NULL;
345
346         optind = 1;
347         while ((c = getopt(argc, argv, "z")) != -1) {
348                 switch (c) {
349                 case 'z':
350                         flags = BTRFS_DEV_STATS_RESET;
351                         break;
352                 case '?':
353                 default:
354                         usage(cmd_dev_stats_usage);
355                 }
356         }
357
358         argc = argc - optind;
359         if (check_argc_exact(argc, 1))
360                 usage(cmd_dev_stats_usage);
361
362         dev_path = argv[optind];
363
364         fdmnt = open_path_or_dev_mnt(dev_path, &dirstream);
365
366         if (fdmnt < 0) {
367                 if (errno == EINVAL)
368                         fprintf(stderr,
369                                 "ERROR: '%s' is not a mounted btrfs device\n",
370                                 dev_path);
371                 else
372                         fprintf(stderr, "ERROR: can't access '%s': %s\n",
373                                 dev_path, strerror(errno));
374                 return 1;
375         }
376
377         ret = get_fs_info(dev_path, &fi_args, &di_args);
378         if (ret) {
379                 fprintf(stderr, "ERROR: getting dev info for devstats failed: "
380                                 "%s\n", strerror(-ret));
381                 err = 1;
382                 goto out;
383         }
384         if (!fi_args.num_devices) {
385                 fprintf(stderr, "ERROR: no devices found\n");
386                 err = 1;
387                 goto out;
388         }
389
390         for (i = 0; i < fi_args.num_devices; i++) {
391                 struct btrfs_ioctl_get_dev_stats args = {0};
392                 __u8 path[BTRFS_DEVICE_PATH_NAME_MAX + 1];
393
394                 strncpy((char *)path, (char *)di_args[i].path,
395                         BTRFS_DEVICE_PATH_NAME_MAX);
396                 path[BTRFS_DEVICE_PATH_NAME_MAX] = '\0';
397
398                 args.devid = di_args[i].devid;
399                 args.nr_items = BTRFS_DEV_STAT_VALUES_MAX;
400                 args.flags = flags;
401
402                 if (ioctl(fdmnt, BTRFS_IOC_GET_DEV_STATS, &args) < 0) {
403                         fprintf(stderr,
404                                 "ERROR: ioctl(BTRFS_IOC_GET_DEV_STATS) on %s failed: %s\n",
405                                 path, strerror(errno));
406                         err = 1;
407                 } else {
408                         if (args.nr_items >= BTRFS_DEV_STAT_WRITE_ERRS + 1)
409                                 printf("[%s].write_io_errs   %llu\n",
410                                        path,
411                                        (unsigned long long) args.values[
412                                         BTRFS_DEV_STAT_WRITE_ERRS]);
413                         if (args.nr_items >= BTRFS_DEV_STAT_READ_ERRS + 1)
414                                 printf("[%s].read_io_errs    %llu\n",
415                                        path,
416                                        (unsigned long long) args.values[
417                                         BTRFS_DEV_STAT_READ_ERRS]);
418                         if (args.nr_items >= BTRFS_DEV_STAT_FLUSH_ERRS + 1)
419                                 printf("[%s].flush_io_errs   %llu\n",
420                                        path,
421                                        (unsigned long long) args.values[
422                                         BTRFS_DEV_STAT_FLUSH_ERRS]);
423                         if (args.nr_items >= BTRFS_DEV_STAT_CORRUPTION_ERRS + 1)
424                                 printf("[%s].corruption_errs %llu\n",
425                                        path,
426                                        (unsigned long long) args.values[
427                                         BTRFS_DEV_STAT_CORRUPTION_ERRS]);
428                         if (args.nr_items >= BTRFS_DEV_STAT_GENERATION_ERRS + 1)
429                                 printf("[%s].generation_errs %llu\n",
430                                        path,
431                                        (unsigned long long) args.values[
432                                         BTRFS_DEV_STAT_GENERATION_ERRS]);
433                 }
434         }
435
436 out:
437         free(di_args);
438         close_file_or_dir(fdmnt, dirstream);
439
440         return err;
441 }
442
443 const struct cmd_group device_cmd_group = {
444         device_cmd_group_usage, NULL, {
445                 { "add", cmd_add_dev, cmd_add_dev_usage, NULL, 0 },
446                 { "delete", cmd_rm_dev, cmd_rm_dev_usage, NULL, 0 },
447                 { "scan", cmd_scan_dev, cmd_scan_dev_usage, NULL, 0 },
448                 { "ready", cmd_ready_dev, cmd_ready_dev_usage, NULL, 0 },
449                 { "stats", cmd_dev_stats, cmd_dev_stats_usage, NULL, 0 },
450                 NULL_CMD_STRUCT
451         }
452 };
453
454 int cmd_device(int argc, char **argv)
455 {
456         return handle_command_group(&device_cmd_group, argc, argv);
457 }