btrfs-progs: handle error in the btrfs_prepare_device
[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 to '%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
98                 res = test_dev_for_mkfs(argv[i], force, estr);
99                 if (res) {
100                         fprintf(stderr, "%s", estr);
101                         ret++;
102                         continue;
103                 }
104
105                 devfd = open(argv[i], O_RDWR);
106                 if (devfd < 0) {
107                         fprintf(stderr, "ERROR: Unable to open device '%s'\n", argv[i]);
108                         ret++;
109                         continue;
110                 }
111
112                 res = btrfs_prepare_device(devfd, argv[i], 1, &dev_block_count,
113                                            0, &mixed, discard);
114                 close(devfd);
115                 if (res) {
116                         ret++;
117                         goto error_out;
118                 }
119
120                 strncpy_null(ioctl_args.name, argv[i]);
121                 res = ioctl(fdmnt, BTRFS_IOC_ADD_DEV, &ioctl_args);
122                 e = errno;
123                 if(res<0){
124                         fprintf(stderr, "ERROR: error adding the device '%s' - %s\n",
125                                 argv[i], strerror(e));
126                         ret++;
127                 }
128
129         }
130
131 error_out:
132         close_file_or_dir(fdmnt, dirstream);
133         return !!ret;
134 }
135
136 static const char * const cmd_rm_dev_usage[] = {
137         "btrfs device delete <device> [<device>...] <path>",
138         "Remove a device from a filesystem",
139         NULL
140 };
141
142 static int cmd_rm_dev(int argc, char **argv)
143 {
144         char    *mntpnt;
145         int     i, fdmnt, ret=0, e;
146         DIR     *dirstream = NULL;
147
148         if (check_argc_min(argc, 3))
149                 usage(cmd_rm_dev_usage);
150
151         mntpnt = argv[argc - 1];
152
153         fdmnt = open_file_or_dir(mntpnt, &dirstream);
154         if (fdmnt < 0) {
155                 fprintf(stderr, "ERROR: can't access to '%s'\n", mntpnt);
156                 return 1;
157         }
158
159         for(i=1 ; i < argc - 1; i++ ){
160                 struct  btrfs_ioctl_vol_args arg;
161                 int     res;
162
163                 if (!is_block_device(argv[i])) {
164                         fprintf(stderr,
165                                 "ERROR: %s is not a block device\n", argv[i]);
166                         ret++;
167                         continue;
168                 }
169                 strncpy_null(arg.name, argv[i]);
170                 res = ioctl(fdmnt, BTRFS_IOC_RM_DEV, &arg);
171                 e = errno;
172                 if (res > 0) {
173                         fprintf(stderr,
174                                 "ERROR: error removing the device '%s' - %s\n",
175                                 argv[i], btrfs_err_str(res));
176                         ret++;
177                 } else if (res < 0) {
178                         fprintf(stderr,
179                                 "ERROR: error removing the device '%s' - %s\n",
180                                 argv[i], strerror(e));
181                         ret++;
182                 }
183         }
184
185         close_file_or_dir(fdmnt, dirstream);
186         return !!ret;
187 }
188
189 static const char * const cmd_scan_dev_usage[] = {
190         "btrfs device scan [<--all-devices>|<device> [<device>...]]",
191         "Scan devices for a btrfs filesystem",
192         NULL
193 };
194
195 static int cmd_scan_dev(int argc, char **argv)
196 {
197         int     i, fd, e;
198         int     where = BTRFS_SCAN_LBLKID;
199         int     devstart = 1;
200
201         if( argc > 1 && !strcmp(argv[1],"--all-devices")){
202                 if (check_argc_max(argc, 2))
203                         usage(cmd_scan_dev_usage);
204
205                 where = BTRFS_SCAN_DEV;
206                 devstart += 1;
207         }
208
209         if(argc<=devstart){
210                 int ret;
211                 printf("Scanning for Btrfs filesystems\n");
212                 ret = scan_for_btrfs(where, BTRFS_UPDATE_KERNEL);
213                 if (ret){
214                         fprintf(stderr, "ERROR: error %d while scanning\n", ret);
215                         return 1;
216                 }
217                 return 0;
218         }
219
220         fd = open("/dev/btrfs-control", O_RDWR);
221         if (fd < 0) {
222                 perror("failed to open /dev/btrfs-control");
223                 return 1;
224         }
225
226         for( i = devstart ; i < argc ; i++ ){
227                 struct btrfs_ioctl_vol_args args;
228                 int ret;
229
230                 if (!is_block_device(argv[i])) {
231                         fprintf(stderr,
232                                 "ERROR: %s is not a block device\n", argv[i]);
233                         close(fd);
234                         return 1;
235                 }
236                 printf("Scanning for Btrfs filesystems in '%s'\n", argv[i]);
237
238                 strncpy_null(args.name, argv[i]);
239                 /*
240                  * FIXME: which are the error code returned by this ioctl ?
241                  * it seems that is impossible to understand if there no is
242                  * a btrfs filesystem from an I/O error !!!
243                  */
244                 ret = ioctl(fd, BTRFS_IOC_SCAN_DEV, &args);
245                 e = errno;
246
247                 if( ret < 0 ){
248                         close(fd);
249                         fprintf(stderr, "ERROR: unable to scan the device '%s' - %s\n",
250                                 argv[i], strerror(e));
251                         return 1;
252                 }
253         }
254
255         close(fd);
256         return 0;
257 }
258
259 static const char * const cmd_ready_dev_usage[] = {
260         "btrfs device ready <device>",
261         "Check device to see if it has all of it's devices in cache for mounting",
262         NULL
263 };
264
265 static int cmd_ready_dev(int argc, char **argv)
266 {
267         struct  btrfs_ioctl_vol_args args;
268         int     fd;
269         int     ret;
270
271         if (check_argc_min(argc, 2))
272                 usage(cmd_ready_dev_usage);
273
274         fd = open("/dev/btrfs-control", O_RDWR);
275         if (fd < 0) {
276                 perror("failed to open /dev/btrfs-control");
277                 return 1;
278         }
279         if (!is_block_device(argv[1])) {
280                 fprintf(stderr,
281                         "ERROR: %s is not a block device\n", argv[1]);
282                 close(fd);
283                 return 1;
284         }
285
286         strncpy(args.name, argv[argc - 1], BTRFS_PATH_NAME_MAX);
287         ret = ioctl(fd, BTRFS_IOC_DEVICES_READY, &args);
288         if (ret < 0) {
289                 fprintf(stderr, "ERROR: unable to determine if the device '%s'"
290                         " is ready for mounting - %s\n", argv[argc - 1],
291                         strerror(errno));
292                 ret = 1;
293         }
294
295         close(fd);
296         return ret;
297 }
298
299 static const char * const cmd_dev_stats_usage[] = {
300         "btrfs device stats [-z] <path>|<device>",
301         "Show current device IO stats. -z to reset stats afterwards.",
302         NULL
303 };
304
305 static int cmd_dev_stats(int argc, char **argv)
306 {
307         char *dev_path;
308         struct btrfs_ioctl_fs_info_args fi_args;
309         struct btrfs_ioctl_dev_info_args *di_args = NULL;
310         int ret;
311         int fdmnt;
312         int i;
313         int c;
314         int err = 0;
315         __u64 flags = 0;
316         DIR *dirstream = NULL;
317
318         optind = 1;
319         while ((c = getopt(argc, argv, "z")) != -1) {
320                 switch (c) {
321                 case 'z':
322                         flags = BTRFS_DEV_STATS_RESET;
323                         break;
324                 case '?':
325                 default:
326                         fprintf(stderr, "ERROR: device stat args invalid.\n"
327                                         " device stat [-z] <path>|<device>\n"
328                                         " -z  to reset stats after reading.\n");
329                         return 1;
330                 }
331         }
332
333         if (optind + 1 != argc) {
334                 fprintf(stderr, "ERROR: device stat needs path|device as single"
335                         " argument\n");
336                 return 1;
337         }
338
339         dev_path = argv[optind];
340
341         fdmnt = open_path_or_dev_mnt(dev_path, &dirstream);
342
343         if (fdmnt < 0) {
344                 fprintf(stderr, "ERROR: can't access '%s'\n", dev_path);
345                 return 1;
346         }
347
348         ret = get_fs_info(dev_path, &fi_args, &di_args);
349         if (ret) {
350                 fprintf(stderr, "ERROR: getting dev info for devstats failed: "
351                                 "%s\n", strerror(-ret));
352                 err = 1;
353                 goto out;
354         }
355         if (!fi_args.num_devices) {
356                 fprintf(stderr, "ERROR: no devices found\n");
357                 err = 1;
358                 goto out;
359         }
360
361         for (i = 0; i < fi_args.num_devices; i++) {
362                 struct btrfs_ioctl_get_dev_stats args = {0};
363                 __u8 path[BTRFS_DEVICE_PATH_NAME_MAX + 1];
364
365                 strncpy((char *)path, (char *)di_args[i].path,
366                         BTRFS_DEVICE_PATH_NAME_MAX);
367                 path[BTRFS_DEVICE_PATH_NAME_MAX] = '\0';
368
369                 args.devid = di_args[i].devid;
370                 args.nr_items = BTRFS_DEV_STAT_VALUES_MAX;
371                 args.flags = flags;
372
373                 if (ioctl(fdmnt, BTRFS_IOC_GET_DEV_STATS, &args) < 0) {
374                         fprintf(stderr,
375                                 "ERROR: ioctl(BTRFS_IOC_GET_DEV_STATS) on %s failed: %s\n",
376                                 path, strerror(errno));
377                         err = 1;
378                 } else {
379                         if (args.nr_items >= BTRFS_DEV_STAT_WRITE_ERRS + 1)
380                                 printf("[%s].write_io_errs   %llu\n",
381                                        path,
382                                        (unsigned long long) args.values[
383                                         BTRFS_DEV_STAT_WRITE_ERRS]);
384                         if (args.nr_items >= BTRFS_DEV_STAT_READ_ERRS + 1)
385                                 printf("[%s].read_io_errs    %llu\n",
386                                        path,
387                                        (unsigned long long) args.values[
388                                         BTRFS_DEV_STAT_READ_ERRS]);
389                         if (args.nr_items >= BTRFS_DEV_STAT_FLUSH_ERRS + 1)
390                                 printf("[%s].flush_io_errs   %llu\n",
391                                        path,
392                                        (unsigned long long) args.values[
393                                         BTRFS_DEV_STAT_FLUSH_ERRS]);
394                         if (args.nr_items >= BTRFS_DEV_STAT_CORRUPTION_ERRS + 1)
395                                 printf("[%s].corruption_errs %llu\n",
396                                        path,
397                                        (unsigned long long) args.values[
398                                         BTRFS_DEV_STAT_CORRUPTION_ERRS]);
399                         if (args.nr_items >= BTRFS_DEV_STAT_GENERATION_ERRS + 1)
400                                 printf("[%s].generation_errs %llu\n",
401                                        path,
402                                        (unsigned long long) args.values[
403                                         BTRFS_DEV_STAT_GENERATION_ERRS]);
404                 }
405         }
406
407 out:
408         free(di_args);
409         close_file_or_dir(fdmnt, dirstream);
410
411         return err;
412 }
413
414 const struct cmd_group device_cmd_group = {
415         device_cmd_group_usage, NULL, {
416                 { "add", cmd_add_dev, cmd_add_dev_usage, NULL, 0 },
417                 { "delete", cmd_rm_dev, cmd_rm_dev_usage, NULL, 0 },
418                 { "scan", cmd_scan_dev, cmd_scan_dev_usage, NULL, 0 },
419                 { "ready", cmd_ready_dev, cmd_ready_dev_usage, NULL, 0 },
420                 { "stats", cmd_dev_stats, cmd_dev_stats_usage, NULL, 0 },
421                 NULL_CMD_STRUCT
422         }
423 };
424
425 int cmd_device(int argc, char **argv)
426 {
427         return handle_command_group(&device_cmd_group, argc, argv);
428 }