btrfs-progs: device delete to get errors from the kernel
[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
26 #include "kerncompat.h"
27 #include "ctree.h"
28 #include "ioctl.h"
29 #include "utils.h"
30
31 #include "commands.h"
32
33 /* FIXME - imported cruft, fix sparse errors and warnings */
34 #ifdef __CHECKER__
35 #define BLKGETSIZE64 0
36 #define BTRFS_IOC_SNAP_CREATE_V2 0
37 #define BTRFS_VOL_NAME_MAX 255
38 struct btrfs_ioctl_vol_args { char name[BTRFS_VOL_NAME_MAX]; };
39 static inline int ioctl(int fd, int define, void *arg) { return 0; }
40 #endif
41
42 static const char * const device_cmd_group_usage[] = {
43         "btrfs device <command> [<args>]",
44         NULL
45 };
46
47 static const char * const cmd_add_dev_usage[] = {
48         "btrfs device add <device> [<device>...] <path>",
49         "Add a device to a filesystem",
50         NULL
51 };
52
53 static int cmd_add_dev(int argc, char **argv)
54 {
55         char    *mntpnt;
56         int     i, fdmnt, ret=0, e;
57         DIR     *dirstream = NULL;
58
59         if (check_argc_min(argc, 3))
60                 usage(cmd_add_dev_usage);
61
62         mntpnt = argv[argc - 1];
63
64         fdmnt = open_file_or_dir(mntpnt, &dirstream);
65         if (fdmnt < 0) {
66                 fprintf(stderr, "ERROR: can't access to '%s'\n", mntpnt);
67                 return 12;
68         }
69
70         for (i = 1; i < argc - 1; i++ ){
71                 struct btrfs_ioctl_vol_args ioctl_args;
72                 int     devfd, res;
73                 u64 dev_block_count = 0;
74                 struct stat st;
75                 int mixed = 0;
76
77                 res = check_mounted(argv[i]);
78                 if (res < 0) {
79                         fprintf(stderr, "error checking %s mount status\n",
80                                 argv[i]);
81                         ret++;
82                         continue;
83                 }
84                 if (res == 1) {
85                         fprintf(stderr, "%s is mounted\n", argv[i]);
86                         ret++;
87                         continue;
88                 }
89
90                 devfd = open(argv[i], O_RDWR);
91                 if (devfd < 0) {
92                         fprintf(stderr, "ERROR: Unable to open device '%s'\n", argv[i]);
93                         ret++;
94                         continue;
95                 }
96                 res = fstat(devfd, &st);
97                 if (res) {
98                         fprintf(stderr, "ERROR: Unable to stat '%s'\n", argv[i]);
99                         close(devfd);
100                         ret++;
101                         continue;
102                 }
103                 if (!S_ISBLK(st.st_mode)) {
104                         fprintf(stderr, "ERROR: '%s' is not a block device\n", argv[i]);
105                         close(devfd);
106                         ret++;
107                         continue;
108                 }
109
110                 res = btrfs_prepare_device(devfd, argv[i], 1, &dev_block_count,
111                                            0, &mixed, 0);
112                 if (res) {
113                         fprintf(stderr, "ERROR: Unable to init '%s'\n", argv[i]);
114                         close(devfd);
115                         ret++;
116                         continue;
117                 }
118                 close(devfd);
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         close_file_or_dir(fdmnt, dirstream);
132         if (ret)
133                 return ret+20;
134         else
135                 return 0;
136 }
137
138 static const char * const cmd_rm_dev_usage[] = {
139         "btrfs device delete <device> [<device>...] <path>",
140         "Remove a device from a filesystem",
141         NULL
142 };
143
144 static int cmd_rm_dev(int argc, char **argv)
145 {
146         char    *mntpnt;
147         int     i, fdmnt, ret=0, e;
148         DIR     *dirstream = NULL;
149
150         if (check_argc_min(argc, 3))
151                 usage(cmd_rm_dev_usage);
152
153         mntpnt = argv[argc - 1];
154
155         fdmnt = open_file_or_dir(mntpnt, &dirstream);
156         if (fdmnt < 0) {
157                 fprintf(stderr, "ERROR: can't access to '%s'\n", mntpnt);
158                 return 12;
159         }
160
161         for(i=1 ; i < argc - 1; i++ ){
162                 struct  btrfs_ioctl_vol_args arg;
163                 int     res;
164
165                 strncpy_null(arg.name, argv[i]);
166                 res = ioctl(fdmnt, BTRFS_IOC_RM_DEV, &arg);
167                 e = errno;
168                 if (res > 0) {
169                         fprintf(stderr,
170                                 "ERROR: error removing the device '%s' - %s\n",
171                                 argv[i], btrfs_err_str(res));
172                         ret++;
173                 } else if (res < 0) {
174                         fprintf(stderr,
175                                 "ERROR: error removing the device '%s' - %s\n",
176                                 argv[i], strerror(e));
177                         ret++;
178                 }
179         }
180
181         close_file_or_dir(fdmnt, dirstream);
182         if( ret)
183                 return ret+20;
184         else
185                 return 0;
186 }
187
188 static const char * const cmd_scan_dev_usage[] = {
189         "btrfs device scan [<--all-devices>|<device> [<device>...]]",
190         "Scan devices for a btrfs filesystem",
191         NULL
192 };
193
194 static int cmd_scan_dev(int argc, char **argv)
195 {
196         int     i, fd, e;
197         int     where = BTRFS_SCAN_PROC;
198         int     devstart = 1;
199
200         if( argc > 1 && !strcmp(argv[1],"--all-devices")){
201                 if (check_argc_max(argc, 2))
202                         usage(cmd_scan_dev_usage);
203
204                 where = BTRFS_SCAN_DEV;
205                 devstart += 1;
206         }
207
208         if(argc<=devstart){
209                 int ret;
210                 printf("Scanning for Btrfs filesystems\n");
211                 ret = scan_for_btrfs(where, 1);
212                 if (ret){
213                         fprintf(stderr, "ERROR: error %d while scanning\n", ret);
214                         return 18;
215                 }
216                 return 0;
217         }
218
219         fd = open("/dev/btrfs-control", O_RDWR);
220         if (fd < 0) {
221                 perror("failed to open /dev/btrfs-control");
222                 return 10;
223         }
224
225         for( i = devstart ; i < argc ; i++ ){
226                 struct btrfs_ioctl_vol_args args;
227                 int ret;
228
229                 printf("Scanning for Btrfs filesystems in '%s'\n", argv[i]);
230
231                 strncpy_null(args.name, argv[i]);
232                 /*
233                  * FIXME: which are the error code returned by this ioctl ?
234                  * it seems that is impossible to understand if there no is
235                  * a btrfs filesystem from an I/O error !!!
236                  */
237                 ret = ioctl(fd, BTRFS_IOC_SCAN_DEV, &args);
238                 e = errno;
239
240                 if( ret < 0 ){
241                         close(fd);
242                         fprintf(stderr, "ERROR: unable to scan the device '%s' - %s\n",
243                                 argv[i], strerror(e));
244                         return 11;
245                 }
246         }
247
248         close(fd);
249         return 0;
250 }
251
252 static const char * const cmd_ready_dev_usage[] = {
253         "btrfs device ready <device>",
254         "Check device to see if it has all of it's devices in cache for mounting",
255         NULL
256 };
257
258 static int cmd_ready_dev(int argc, char **argv)
259 {
260         struct  btrfs_ioctl_vol_args args;
261         int     fd;
262         int     ret;
263
264         if (check_argc_min(argc, 2))
265                 usage(cmd_ready_dev_usage);
266
267         fd = open("/dev/btrfs-control", O_RDWR);
268         if (fd < 0) {
269                 perror("failed to open /dev/btrfs-control");
270                 return 10;
271         }
272
273         strncpy(args.name, argv[argc - 1], BTRFS_PATH_NAME_MAX);
274         ret = ioctl(fd, BTRFS_IOC_DEVICES_READY, &args);
275         if (ret < 0) {
276                 fprintf(stderr, "ERROR: unable to determine if the device '%s'"
277                         " is ready for mounting - %s\n", argv[argc - 1],
278                         strerror(errno));
279                 ret = 1;
280         }
281
282         close(fd);
283         return ret;
284 }
285
286 static const char * const cmd_dev_stats_usage[] = {
287         "btrfs device stats [-z] <path>|<device>",
288         "Show current device IO stats. -z to reset stats afterwards.",
289         NULL
290 };
291
292 static int cmd_dev_stats(int argc, char **argv)
293 {
294         char *path;
295         struct btrfs_ioctl_fs_info_args fi_args;
296         struct btrfs_ioctl_dev_info_args *di_args = NULL;
297         int ret;
298         int fdmnt;
299         int i;
300         int c;
301         int err = 0;
302         __u64 flags = 0;
303         DIR *dirstream = NULL;
304
305         optind = 1;
306         while ((c = getopt(argc, argv, "z")) != -1) {
307                 switch (c) {
308                 case 'z':
309                         flags = BTRFS_DEV_STATS_RESET;
310                         break;
311                 case '?':
312                 default:
313                         fprintf(stderr, "ERROR: device stat args invalid.\n"
314                                         " device stat [-z] <path>|<device>\n"
315                                         " -z  to reset stats after reading.\n");
316                         return 1;
317                 }
318         }
319
320         if (optind + 1 != argc) {
321                 fprintf(stderr, "ERROR: device stat needs path|device as single"
322                         " argument\n");
323                 return 1;
324         }
325
326         path = argv[optind];
327
328         fdmnt = open_path_or_dev_mnt(path, &dirstream);
329
330         if (fdmnt < 0) {
331                 fprintf(stderr, "ERROR: can't access '%s'\n", path);
332                 return 12;
333         }
334
335         ret = get_fs_info(path, &fi_args, &di_args);
336         if (ret) {
337                 fprintf(stderr, "ERROR: getting dev info for devstats failed: "
338                                 "%s\n", strerror(-ret));
339                 err = 1;
340                 goto out;
341         }
342         if (!fi_args.num_devices) {
343                 fprintf(stderr, "ERROR: no devices found\n");
344                 err = 1;
345                 goto out;
346         }
347
348         for (i = 0; i < fi_args.num_devices; i++) {
349                 struct btrfs_ioctl_get_dev_stats args = {0};
350                 __u8 path[BTRFS_DEVICE_PATH_NAME_MAX + 1];
351
352                 strncpy((char *)path, (char *)di_args[i].path,
353                         BTRFS_DEVICE_PATH_NAME_MAX);
354                 path[BTRFS_DEVICE_PATH_NAME_MAX] = '\0';
355
356                 args.devid = di_args[i].devid;
357                 args.nr_items = BTRFS_DEV_STAT_VALUES_MAX;
358                 args.flags = flags;
359
360                 if (ioctl(fdmnt, BTRFS_IOC_GET_DEV_STATS, &args) < 0) {
361                         fprintf(stderr,
362                                 "ERROR: ioctl(BTRFS_IOC_GET_DEV_STATS) on %s failed: %s\n",
363                                 path, strerror(errno));
364                         err = 1;
365                 } else {
366                         if (args.nr_items >= BTRFS_DEV_STAT_WRITE_ERRS + 1)
367                                 printf("[%s].write_io_errs   %llu\n",
368                                        path,
369                                        (unsigned long long) args.values[
370                                         BTRFS_DEV_STAT_WRITE_ERRS]);
371                         if (args.nr_items >= BTRFS_DEV_STAT_READ_ERRS + 1)
372                                 printf("[%s].read_io_errs    %llu\n",
373                                        path,
374                                        (unsigned long long) args.values[
375                                         BTRFS_DEV_STAT_READ_ERRS]);
376                         if (args.nr_items >= BTRFS_DEV_STAT_FLUSH_ERRS + 1)
377                                 printf("[%s].flush_io_errs   %llu\n",
378                                        path,
379                                        (unsigned long long) args.values[
380                                         BTRFS_DEV_STAT_FLUSH_ERRS]);
381                         if (args.nr_items >= BTRFS_DEV_STAT_CORRUPTION_ERRS + 1)
382                                 printf("[%s].corruption_errs %llu\n",
383                                        path,
384                                        (unsigned long long) args.values[
385                                         BTRFS_DEV_STAT_CORRUPTION_ERRS]);
386                         if (args.nr_items >= BTRFS_DEV_STAT_GENERATION_ERRS + 1)
387                                 printf("[%s].generation_errs %llu\n",
388                                        path,
389                                        (unsigned long long) args.values[
390                                         BTRFS_DEV_STAT_GENERATION_ERRS]);
391                 }
392         }
393
394 out:
395         free(di_args);
396         close_file_or_dir(fdmnt, dirstream);
397
398         return err;
399 }
400
401 const struct cmd_group device_cmd_group = {
402         device_cmd_group_usage, NULL, {
403                 { "add", cmd_add_dev, cmd_add_dev_usage, NULL, 0 },
404                 { "delete", cmd_rm_dev, cmd_rm_dev_usage, NULL, 0 },
405                 { "scan", cmd_scan_dev, cmd_scan_dev_usage, NULL, 0 },
406                 { "ready", cmd_ready_dev, cmd_ready_dev_usage, NULL, 0 },
407                 { "stats", cmd_dev_stats, cmd_dev_stats_usage, NULL, 0 },
408                 { 0, 0, 0, 0, 0 }
409         }
410 };
411
412 int cmd_device(int argc, char **argv)
413 {
414         return handle_command_group(&device_cmd_group, argc, argv);
415 }