btrfs-progs: Avoid double-free of fs_devices->list
[platform/upstream/btrfs-progs.git] / cmds-filesystem.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 #define _XOPEN_SOURCE 500
18 #include <stdio.h>
19 #include <stdlib.h>
20 #include <string.h>
21 #include <unistd.h>
22 #include <sys/ioctl.h>
23 #include <errno.h>
24 #include <uuid/uuid.h>
25 #include <ctype.h>
26 #include <fcntl.h>
27 #include <ftw.h>
28 #include <mntent.h>
29 #include <linux/limits.h>
30 #include <getopt.h>
31
32 #include "kerncompat.h"
33 #include "ctree.h"
34 #include "ioctl.h"
35 #include "utils.h"
36 #include "volumes.h"
37 #include "version.h"
38 #include "commands.h"
39 #include "list_sort.h"
40 #include "disk-io.h"
41
42
43 /*
44  * for btrfs fi show, we maintain a hash of fsids we've already printed.
45  * This way we don't print dups if a given FS is mounted more than once.
46  */
47 #define SEEN_FSID_HASH_SIZE 256
48
49 struct seen_fsid {
50         u8 fsid[BTRFS_FSID_SIZE];
51         struct seen_fsid *next;
52 };
53
54 static struct seen_fsid *seen_fsid_hash[SEEN_FSID_HASH_SIZE] = {NULL,};
55
56 static int add_seen_fsid(u8 *fsid)
57 {
58         u8 hash = fsid[0];
59         int slot = hash % SEEN_FSID_HASH_SIZE;
60         struct seen_fsid *seen = seen_fsid_hash[slot];
61         struct seen_fsid *alloc;
62
63         if (!seen)
64                 goto insert;
65
66         while (1) {
67                 if (memcmp(seen->fsid, fsid, BTRFS_FSID_SIZE) == 0)
68                         return -EEXIST;
69
70                 if (!seen->next)
71                         break;
72
73                 seen = seen->next;
74         }
75
76 insert:
77
78         alloc = malloc(sizeof(*alloc));
79         if (!alloc)
80                 return -ENOMEM;
81
82         alloc->next = NULL;
83         memcpy(alloc->fsid, fsid, BTRFS_FSID_SIZE);
84
85         if (seen)
86                 seen->next = alloc;
87         else
88                 seen_fsid_hash[slot] = alloc;
89
90         return 0;
91 }
92
93 static void free_seen_fsid(void)
94 {
95         int slot;
96         struct seen_fsid *seen;
97         struct seen_fsid *next;
98
99         for (slot = 0; slot < SEEN_FSID_HASH_SIZE; slot++) {
100                 seen = seen_fsid_hash[slot];
101                 while (seen) {
102                         next = seen->next;
103                         free(seen);
104                         seen = next;
105                 }
106                 seen_fsid_hash[slot] = NULL;
107         }
108 }
109
110 static const char * const filesystem_cmd_group_usage[] = {
111         "btrfs filesystem [<group>] <command> [<args>]",
112         NULL
113 };
114
115 static const char * const cmd_df_usage[] = {
116         "btrfs filesystem df <path>",
117         "Show space usage information for a mount point",
118         NULL
119 };
120
121 static char *group_type_str(u64 flag)
122 {
123         switch (flag & BTRFS_BLOCK_GROUP_TYPE_MASK) {
124         case BTRFS_BLOCK_GROUP_DATA:
125                 return "Data";
126         case BTRFS_BLOCK_GROUP_SYSTEM:
127                 return "System";
128         case BTRFS_BLOCK_GROUP_METADATA:
129                 return "Metadata";
130         case BTRFS_BLOCK_GROUP_DATA|BTRFS_BLOCK_GROUP_METADATA:
131                 return "Data+Metadata";
132         default:
133                 return "unknown";
134         }
135 }
136
137 static char *group_profile_str(u64 flag)
138 {
139         switch (flag & BTRFS_BLOCK_GROUP_PROFILE_MASK) {
140         case 0:
141                 return "single";
142         case BTRFS_BLOCK_GROUP_RAID0:
143                 return "RAID0";
144         case BTRFS_BLOCK_GROUP_RAID1:
145                 return "RAID1";
146         case BTRFS_BLOCK_GROUP_RAID5:
147                 return "RAID5";
148         case BTRFS_BLOCK_GROUP_RAID6:
149                 return "RAID6";
150         case BTRFS_BLOCK_GROUP_DUP:
151                 return "DUP";
152         case BTRFS_BLOCK_GROUP_RAID10:
153                 return "RAID10";
154         default:
155                 return "unknown";
156         }
157 }
158
159 static int get_df(int fd, struct btrfs_ioctl_space_args **sargs_ret)
160 {
161         u64 count = 0;
162         int ret, e;
163         struct btrfs_ioctl_space_args *sargs;
164
165         sargs = malloc(sizeof(struct btrfs_ioctl_space_args));
166         if (!sargs)
167                 return -ENOMEM;
168
169         sargs->space_slots = 0;
170         sargs->total_spaces = 0;
171
172         ret = ioctl(fd, BTRFS_IOC_SPACE_INFO, sargs);
173         e = errno;
174         if (ret) {
175                 fprintf(stderr, "ERROR: couldn't get space info - %s\n",
176                         strerror(e));
177                 free(sargs);
178                 return -e;
179         }
180         /* This really should never happen */
181         if (!sargs->total_spaces) {
182                 free(sargs);
183                 return -ENOENT;
184         }
185         count = sargs->total_spaces;
186         free(sargs);
187
188         sargs = malloc(sizeof(struct btrfs_ioctl_space_args) +
189                         (count * sizeof(struct btrfs_ioctl_space_info)));
190         if (!sargs)
191                 return -ENOMEM;
192
193         sargs->space_slots = count;
194         sargs->total_spaces = 0;
195         ret = ioctl(fd, BTRFS_IOC_SPACE_INFO, sargs);
196         e = errno;
197         if (ret) {
198                 fprintf(stderr, "ERROR: get space info count %llu - %s\n",
199                                 count, strerror(e));
200                 free(sargs);
201                 return -e;
202         }
203         *sargs_ret = sargs;
204         return 0;
205 }
206
207 static void print_df(struct btrfs_ioctl_space_args *sargs)
208 {
209         u64 i;
210         struct btrfs_ioctl_space_info *sp = sargs->spaces;
211
212         for (i = 0; i < sargs->total_spaces; i++, sp++) {
213                 printf("%s, %s: total=%s, used=%s\n",
214                         group_type_str(sp->flags),
215                         group_profile_str(sp->flags),
216                         pretty_size(sp->total_bytes),
217                         pretty_size(sp->used_bytes));
218         }
219 }
220
221 static int cmd_df(int argc, char **argv)
222 {
223         struct btrfs_ioctl_space_args *sargs = NULL;
224         int ret;
225         int fd;
226         char *path;
227         DIR  *dirstream = NULL;
228
229         if (check_argc_exact(argc, 2))
230                 usage(cmd_df_usage);
231
232         path = argv[1];
233
234         fd = open_file_or_dir(path, &dirstream);
235         if (fd < 0) {
236                 fprintf(stderr, "ERROR: can't access '%s'\n", path);
237                 return 1;
238         }
239         ret = get_df(fd, &sargs);
240
241         if (!ret && sargs) {
242                 print_df(sargs);
243                 free(sargs);
244         } else {
245                 fprintf(stderr, "ERROR: get_df failed %s\n", strerror(-ret));
246         }
247
248         close_file_or_dir(fd, dirstream);
249         return !!ret;
250 }
251
252 static int match_search_item_kernel(__u8 *fsid, char *mnt, char *label,
253                                         char *search)
254 {
255         char uuidbuf[BTRFS_UUID_UNPARSED_SIZE];
256         int search_len = strlen(search);
257
258         search_len = min(search_len, BTRFS_UUID_UNPARSED_SIZE);
259         uuid_unparse(fsid, uuidbuf);
260         if (!strncmp(uuidbuf, search, search_len))
261                 return 1;
262
263         if (strlen(label) && strcmp(label, search) == 0)
264                 return 1;
265
266         if (strcmp(mnt, search) == 0)
267                 return 1;
268
269         return 0;
270 }
271
272 static int uuid_search(struct btrfs_fs_devices *fs_devices, char *search)
273 {
274         char uuidbuf[BTRFS_UUID_UNPARSED_SIZE];
275         struct list_head *cur;
276         struct btrfs_device *device;
277         int search_len = strlen(search);
278
279         search_len = min(search_len, BTRFS_UUID_UNPARSED_SIZE);
280         uuid_unparse(fs_devices->fsid, uuidbuf);
281         if (!strncmp(uuidbuf, search, search_len))
282                 return 1;
283
284         list_for_each(cur, &fs_devices->devices) {
285                 device = list_entry(cur, struct btrfs_device, dev_list);
286                 if ((device->label && strcmp(device->label, search) == 0) ||
287                     strcmp(device->name, search) == 0)
288                         return 1;
289         }
290         return 0;
291 }
292
293 /*
294  * Sort devices by devid, ascending
295  */
296 static int cmp_device_id(void *priv, struct list_head *a,
297                 struct list_head *b)
298 {
299         const struct btrfs_device *da = list_entry(a, struct btrfs_device,
300                         dev_list);
301         const struct btrfs_device *db = list_entry(b, struct btrfs_device,
302                         dev_list);
303
304         return da->devid < db->devid ? -1 :
305                 da->devid > db->devid ? 1 : 0;
306 }
307
308 static void print_one_uuid(struct btrfs_fs_devices *fs_devices)
309 {
310         char uuidbuf[BTRFS_UUID_UNPARSED_SIZE];
311         struct list_head *cur;
312         struct btrfs_device *device;
313         u64 devs_found = 0;
314         u64 total;
315
316         if (add_seen_fsid(fs_devices->fsid))
317                 return;
318
319         uuid_unparse(fs_devices->fsid, uuidbuf);
320         device = list_entry(fs_devices->devices.next, struct btrfs_device,
321                             dev_list);
322         if (device->label && device->label[0])
323                 printf("Label: '%s' ", device->label);
324         else
325                 printf("Label: none ");
326
327
328         total = device->total_devs;
329         printf(" uuid: %s\n\tTotal devices %llu FS bytes used %s\n", uuidbuf,
330                (unsigned long long)total,
331                pretty_size(device->super_bytes_used));
332
333         list_sort(NULL, &fs_devices->devices, cmp_device_id);
334         list_for_each(cur, &fs_devices->devices) {
335                 device = list_entry(cur, struct btrfs_device, dev_list);
336
337                 printf("\tdevid %4llu size %s used %s path %s\n",
338                        (unsigned long long)device->devid,
339                        pretty_size(device->total_bytes),
340                        pretty_size(device->bytes_used), device->name);
341
342                 devs_found++;
343         }
344         if (devs_found < total) {
345                 printf("\t*** Some devices missing\n");
346         }
347         printf("\n");
348 }
349
350 /* adds up all the used spaces as reported by the space info ioctl
351  */
352 static u64 calc_used_bytes(struct btrfs_ioctl_space_args *si)
353 {
354         u64 ret = 0;
355         int i;
356         for (i = 0; i < si->total_spaces; i++)
357                 ret += si->spaces[i].used_bytes;
358         return ret;
359 }
360
361 static int print_one_fs(struct btrfs_ioctl_fs_info_args *fs_info,
362                 struct btrfs_ioctl_dev_info_args *dev_info,
363                 struct btrfs_ioctl_space_args *space_info,
364                 char *label, char *path)
365 {
366         int i;
367         int fd;
368         int missing = 0;
369         char uuidbuf[BTRFS_UUID_UNPARSED_SIZE];
370         struct btrfs_ioctl_dev_info_args *tmp_dev_info;
371         int ret;
372
373         ret = add_seen_fsid(fs_info->fsid);
374         if (ret == -EEXIST)
375                 return 0;
376         else if (ret)
377                 return ret;
378
379         uuid_unparse(fs_info->fsid, uuidbuf);
380         if (label && strlen(label))
381                 printf("Label: '%s' ", label);
382         else
383                 printf("Label: none ");
384
385         printf(" uuid: %s\n\tTotal devices %llu FS bytes used %s\n", uuidbuf,
386                         fs_info->num_devices,
387                         pretty_size(calc_used_bytes(space_info)));
388
389         for (i = 0; i < fs_info->num_devices; i++) {
390                 tmp_dev_info = (struct btrfs_ioctl_dev_info_args *)&dev_info[i];
391
392                 /* Add check for missing devices even mounted */
393                 fd = open((char *)tmp_dev_info->path, O_RDONLY);
394                 if (fd < 0) {
395                         missing = 1;
396                         continue;
397                 }
398                 close(fd);
399                 printf("\tdevid %4llu size %s used %s path %s\n",
400                         tmp_dev_info->devid,
401                         pretty_size(tmp_dev_info->total_bytes),
402                         pretty_size(tmp_dev_info->bytes_used),
403                         tmp_dev_info->path);
404         }
405
406         if (missing)
407                 printf("\t*** Some devices missing\n");
408         printf("\n");
409         return 0;
410 }
411
412 /* This function checks if the given input parameter is
413  * an uuid or a path
414  * return -1: some error in the given input
415  * return 0: unknow input
416  * return 1: given input is uuid
417  * return 2: given input is path
418  */
419 static int check_arg_type(char *input)
420 {
421         uuid_t  out;
422         char path[PATH_MAX];
423
424         if (!input)
425                 return -EINVAL;
426
427         if (realpath(input, path)) {
428                 if (is_block_device(path) == 1)
429                         return BTRFS_ARG_BLKDEV;
430
431                 if (is_mount_point(path) == 1)
432                         return BTRFS_ARG_MNTPOINT;
433
434                 return BTRFS_ARG_UNKNOWN;
435         }
436
437         if (strlen(input) == (BTRFS_UUID_UNPARSED_SIZE - 1) &&
438                 !uuid_parse(input, out))
439                 return BTRFS_ARG_UUID;
440
441         return BTRFS_ARG_UNKNOWN;
442 }
443
444 static int btrfs_scan_kernel(void *search)
445 {
446         int ret = 0, fd;
447         int found = 0;
448         FILE *f;
449         struct mntent *mnt;
450         struct btrfs_ioctl_fs_info_args fs_info_arg;
451         struct btrfs_ioctl_dev_info_args *dev_info_arg = NULL;
452         struct btrfs_ioctl_space_args *space_info_arg = NULL;
453         char label[BTRFS_LABEL_SIZE];
454
455         f = setmntent("/proc/self/mounts", "r");
456         if (f == NULL)
457                 return 1;
458
459         memset(label, 0, sizeof(label));
460         while ((mnt = getmntent(f)) != NULL) {
461                 if (strcmp(mnt->mnt_type, "btrfs"))
462                         continue;
463                 ret = get_fs_info(mnt->mnt_dir, &fs_info_arg,
464                                 &dev_info_arg);
465                 if (ret)
466                         goto out;
467
468                 if (get_label_mounted(mnt->mnt_dir, label)) {
469                         kfree(dev_info_arg);
470                         goto out;
471                 }
472                 if (search && !match_search_item_kernel(fs_info_arg.fsid,
473                                         mnt->mnt_dir, label, search)) {
474                         kfree(dev_info_arg);
475                         continue;
476                 }
477
478                 fd = open(mnt->mnt_dir, O_RDONLY);
479                 if ((fd != -1) && !get_df(fd, &space_info_arg)) {
480                         print_one_fs(&fs_info_arg, dev_info_arg,
481                                         space_info_arg, label, mnt->mnt_dir);
482                         kfree(space_info_arg);
483                         memset(label, 0, sizeof(label));
484                         found = 1;
485                 }
486                 if (fd != -1)
487                         close(fd);
488                 kfree(dev_info_arg);
489         }
490
491 out:
492         endmntent(f);
493         return !found;
494 }
495
496 static int dev_to_fsid(char *dev, __u8 *fsid)
497 {
498         struct btrfs_super_block *disk_super;
499         char *buf;
500         int ret;
501         int fd;
502
503         buf = malloc(4096);
504         if (!buf)
505                 return -ENOMEM;
506
507         fd = open(dev, O_RDONLY);
508         if (fd < 0) {
509                 ret = -errno;
510                 free(buf);
511                 return ret;
512         }
513
514         disk_super = (struct btrfs_super_block *)buf;
515         ret = btrfs_read_dev_super(fd, disk_super,
516                         BTRFS_SUPER_INFO_OFFSET);
517         if (ret)
518                 goto out;
519
520         memcpy(fsid, disk_super->fsid, BTRFS_FSID_SIZE);
521         ret = 0;
522
523 out:
524         close(fd);
525         free(buf);
526         return ret;
527 }
528
529 static const char * const cmd_show_usage[] = {
530         "btrfs filesystem show [options] [<path>|<uuid>|<device>|label]",
531         "Show the structure of a filesystem",
532         "-d|--all-devices   show only disks under /dev containing btrfs filesystem",
533         "-m|--mounted       show only mounted btrfs",
534         "If no argument is given, structure of all present filesystems is shown.",
535         NULL
536 };
537
538 static int cmd_show(int argc, char **argv)
539 {
540         struct list_head *all_uuids;
541         struct btrfs_fs_devices *fs_devices;
542         struct list_head *cur_uuid;
543         char *search = NULL;
544         int ret;
545         int where = BTRFS_SCAN_LBLKID;
546         int type = 0;
547         char mp[BTRFS_PATH_NAME_MAX + 1];
548         char path[PATH_MAX];
549         __u8 fsid[BTRFS_FSID_SIZE];
550         char uuid_buf[37];
551         int found = 0;
552
553         while (1) {
554                 int long_index;
555                 static struct option long_options[] = {
556                         { "all-devices", no_argument, NULL, 'd'},
557                         { "mounted", no_argument, NULL, 'm'},
558                         { NULL, no_argument, NULL, 0 },
559                 };
560                 int c = getopt_long(argc, argv, "dm", long_options,
561                                         &long_index);
562                 if (c < 0)
563                         break;
564                 switch (c) {
565                 case 'd':
566                         where = BTRFS_SCAN_DEV;
567                         break;
568                 case 'm':
569                         where = BTRFS_SCAN_MOUNTED;
570                         break;
571                 default:
572                         usage(cmd_show_usage);
573                 }
574         }
575
576         if (check_argc_max(argc, optind + 1))
577                 usage(cmd_show_usage);
578
579         if (argc > optind) {
580                 search = argv[optind];
581                 if (strlen(search) == 0)
582                         usage(cmd_show_usage);
583                 type = check_arg_type(search);
584                 /*
585                  * needs spl handling if input arg is block dev
586                  * And if input arg is mount-point just print it
587                  * right away
588                  */
589                 if (type == BTRFS_ARG_BLKDEV) {
590                         if (where == BTRFS_SCAN_DEV) {
591                                 /* we need to do this because
592                                  * legacy BTRFS_SCAN_DEV
593                                  * provides /dev/dm-x paths
594                                  */
595                                 if (realpath(search, path))
596                                         search = path;
597                         } else {
598                                 ret = get_btrfs_mount(search,
599                                                 mp, sizeof(mp));
600                                 if (!ret) {
601                                         /* given block dev is mounted*/
602                                         search = mp;
603                                         type = BTRFS_ARG_MNTPOINT;
604                                 } else {
605                                         ret = dev_to_fsid(search, fsid);
606                                         if (ret) {
607                                                 fprintf(stderr,
608                                                         "ERROR: No btrfs on %s\n",
609                                                         search);
610                                                 return 1;
611                                         }
612                                         uuid_unparse(fsid, uuid_buf);
613                                         search = uuid_buf;
614                                         type = BTRFS_ARG_UUID;
615                                         goto devs_only;
616                                 }
617                         }
618                 }
619         }
620
621         if (where == BTRFS_SCAN_DEV)
622                 goto devs_only;
623
624         /* show mounted btrfs */
625         ret = btrfs_scan_kernel(search);
626         if (search && !ret) {
627                 /* since search is found we are done */
628                 goto out;
629         }
630
631         /* shows mounted only */
632         if (where == BTRFS_SCAN_MOUNTED)
633                 goto out;
634
635 devs_only:
636         ret = scan_for_btrfs(where, !BTRFS_UPDATE_KERNEL);
637
638         if (ret) {
639                 fprintf(stderr, "ERROR: %d while scanning\n", ret);
640                 return 1;
641         }
642         
643         all_uuids = btrfs_scanned_uuids();
644         list_for_each(cur_uuid, all_uuids) {
645                 fs_devices = list_entry(cur_uuid, struct btrfs_fs_devices,
646                                         list);
647                 if (search && uuid_search(fs_devices, search) == 0)
648                         continue;
649
650                 print_one_uuid(fs_devices);
651                 found = 1;
652         }
653         if (search && !found)
654                 ret = 1;
655
656         while (!list_empty(all_uuids)) {
657                 fs_devices = list_entry(all_uuids->next,
658                                         struct btrfs_fs_devices, list);
659                 btrfs_close_devices(fs_devices);
660         }
661 out:
662         printf("%s\n", BTRFS_BUILD_VERSION);
663         free_seen_fsid();
664         return ret;
665 }
666
667 static const char * const cmd_sync_usage[] = {
668         "btrfs filesystem sync <path>",
669         "Force a sync on a filesystem",
670         NULL
671 };
672
673 static int cmd_sync(int argc, char **argv)
674 {
675         int     fd, res, e;
676         char    *path;
677         DIR     *dirstream = NULL;
678
679         if (check_argc_exact(argc, 2))
680                 usage(cmd_sync_usage);
681
682         path = argv[1];
683
684         fd = open_file_or_dir(path, &dirstream);
685         if (fd < 0) {
686                 fprintf(stderr, "ERROR: can't access '%s'\n", path);
687                 return 1;
688         }
689
690         printf("FSSync '%s'\n", path);
691         res = ioctl(fd, BTRFS_IOC_SYNC);
692         e = errno;
693         close_file_or_dir(fd, dirstream);
694         if( res < 0 ){
695                 fprintf(stderr, "ERROR: unable to fs-syncing '%s' - %s\n", 
696                         path, strerror(e));
697                 return 1;
698         }
699
700         return 0;
701 }
702
703 static int parse_compress_type(char *s)
704 {
705         if (strcmp(optarg, "zlib") == 0)
706                 return BTRFS_COMPRESS_ZLIB;
707         else if (strcmp(optarg, "lzo") == 0)
708                 return BTRFS_COMPRESS_LZO;
709         else {
710                 fprintf(stderr, "Unknown compress type %s\n", s);
711                 exit(1);
712         };
713 }
714
715 static const char * const cmd_defrag_usage[] = {
716         "btrfs filesystem defragment [options] <file>|<dir> [<file>|<dir>...]",
717         "Defragment a file or a directory",
718         "",
719         "-v             be verbose",
720         "-r             defragment files recursively",
721         "-c[zlib,lzo]   compress the file while defragmenting",
722         "-f             flush data to disk immediately after defragmenting",
723         "-s start       defragment only from byte onward",
724         "-l len         defragment only up to len bytes",
725         "-t size        minimal size of file to be considered for defragmenting",
726         NULL
727 };
728
729 static int do_defrag(int fd, int fancy_ioctl,
730                 struct btrfs_ioctl_defrag_range_args *range)
731 {
732         int ret;
733
734         if (!fancy_ioctl)
735                 ret = ioctl(fd, BTRFS_IOC_DEFRAG, NULL);
736         else
737                 ret = ioctl(fd, BTRFS_IOC_DEFRAG_RANGE, range);
738
739         return ret;
740 }
741
742 static int defrag_global_fancy_ioctl;
743 static struct btrfs_ioctl_defrag_range_args defrag_global_range;
744 static int defrag_global_verbose;
745 static int defrag_global_errors;
746 static int defrag_callback(const char *fpath, const struct stat *sb,
747                 int typeflag, struct FTW *ftwbuf)
748 {
749         int ret = 0;
750         int e = 0;
751         int fd = 0;
752
753         if ((typeflag == FTW_F) && S_ISREG(sb->st_mode)) {
754                 if (defrag_global_verbose)
755                         printf("%s\n", fpath);
756                 fd = open(fpath, O_RDWR);
757                 e = errno;
758                 if (fd < 0)
759                         goto error;
760                 ret = do_defrag(fd, defrag_global_fancy_ioctl, &defrag_global_range);
761                 e = errno;
762                 close(fd);
763                 if (ret && e == ENOTTY && defrag_global_fancy_ioctl) {
764                         fprintf(stderr, "ERROR: defrag range ioctl not "
765                                 "supported in this kernel, please try "
766                                 "without any options.\n");
767                         defrag_global_errors++;
768                         return ENOTTY;
769                 }
770                 if (ret)
771                         goto error;
772         }
773         return 0;
774
775 error:
776         fprintf(stderr, "ERROR: defrag failed on %s - %s\n", fpath, strerror(e));
777         defrag_global_errors++;
778         return 0;
779 }
780
781 static int cmd_defrag(int argc, char **argv)
782 {
783         int fd;
784         int flush = 0;
785         u64 start = 0;
786         u64 len = (u64)-1;
787         u32 thresh = 0;
788         int i;
789         int recursive = 0;
790         int ret = 0;
791         struct btrfs_ioctl_defrag_range_args range;
792         int e = 0;
793         int compress_type = BTRFS_COMPRESS_NONE;
794         DIR *dirstream;
795
796         defrag_global_errors = 0;
797         defrag_global_verbose = 0;
798         defrag_global_errors = 0;
799         defrag_global_fancy_ioctl = 0;
800         optind = 1;
801         while(1) {
802                 int c = getopt(argc, argv, "vrc::fs:l:t:");
803                 if (c < 0)
804                         break;
805
806                 switch(c) {
807                 case 'c':
808                         compress_type = BTRFS_COMPRESS_ZLIB;
809                         if (optarg)
810                                 compress_type = parse_compress_type(optarg);
811                         defrag_global_fancy_ioctl = 1;
812                         break;
813                 case 'f':
814                         flush = 1;
815                         defrag_global_fancy_ioctl = 1;
816                         break;
817                 case 'v':
818                         defrag_global_verbose = 1;
819                         break;
820                 case 's':
821                         start = parse_size(optarg);
822                         defrag_global_fancy_ioctl = 1;
823                         break;
824                 case 'l':
825                         len = parse_size(optarg);
826                         defrag_global_fancy_ioctl = 1;
827                         break;
828                 case 't':
829                         thresh = parse_size(optarg);
830                         defrag_global_fancy_ioctl = 1;
831                         break;
832                 case 'r':
833                         recursive = 1;
834                         break;
835                 default:
836                         usage(cmd_defrag_usage);
837                 }
838         }
839
840         if (check_argc_min(argc - optind, 1))
841                 usage(cmd_defrag_usage);
842
843         memset(&defrag_global_range, 0, sizeof(range));
844         defrag_global_range.start = start;
845         defrag_global_range.len = len;
846         defrag_global_range.extent_thresh = thresh;
847         if (compress_type) {
848                 defrag_global_range.flags |= BTRFS_DEFRAG_RANGE_COMPRESS;
849                 defrag_global_range.compress_type = compress_type;
850         }
851         if (flush)
852                 defrag_global_range.flags |= BTRFS_DEFRAG_RANGE_START_IO;
853
854         for (i = optind; i < argc; i++) {
855                 struct stat st;
856
857                 dirstream = NULL;
858                 fd = open_file_or_dir(argv[i], &dirstream);
859                 if (fd < 0) {
860                         fprintf(stderr, "ERROR: failed to open %s - %s\n", argv[i],
861                                         strerror(errno));
862                         defrag_global_errors++;
863                         close_file_or_dir(fd, dirstream);
864                         continue;
865                 }
866                 if (fstat(fd, &st)) {
867                         fprintf(stderr, "ERROR: failed to stat %s - %s\n",
868                                         argv[i], strerror(errno));
869                         defrag_global_errors++;
870                         close_file_or_dir(fd, dirstream);
871                         continue;
872                 }
873                 if (!(S_ISDIR(st.st_mode) || S_ISREG(st.st_mode))) {
874                         fprintf(stderr,
875                             "ERROR: %s is not a directory or a regular file\n",
876                             argv[i]);
877                         defrag_global_errors++;
878                         close_file_or_dir(fd, dirstream);
879                         continue;
880                 }
881                 if (recursive) {
882                         if (S_ISDIR(st.st_mode)) {
883                                 ret = nftw(argv[i], defrag_callback, 10,
884                                                 FTW_MOUNT | FTW_PHYS);
885                                 if (ret == ENOTTY)
886                                         exit(1);
887                                 /* errors are handled in the callback */
888                                 ret = 0;
889                         } else {
890                                 if (defrag_global_verbose)
891                                         printf("%s\n", argv[i]);
892                                 ret = do_defrag(fd, defrag_global_fancy_ioctl,
893                                                 &defrag_global_range);
894                                 e = errno;
895                         }
896                 } else {
897                         if (defrag_global_verbose)
898                                 printf("%s\n", argv[i]);
899                         ret = do_defrag(fd, defrag_global_fancy_ioctl,
900                                         &defrag_global_range);
901                         e = errno;
902                 }
903                 close_file_or_dir(fd, dirstream);
904                 if (ret && e == ENOTTY && defrag_global_fancy_ioctl) {
905                         fprintf(stderr, "ERROR: defrag range ioctl not "
906                                 "supported in this kernel, please try "
907                                 "without any options.\n");
908                         defrag_global_errors++;
909                         break;
910                 }
911                 if (ret) {
912                         fprintf(stderr, "ERROR: defrag failed on %s - %s\n",
913                                 argv[i], strerror(e));
914                         defrag_global_errors++;
915                 }
916         }
917         if (defrag_global_verbose)
918                 printf("%s\n", BTRFS_BUILD_VERSION);
919         if (defrag_global_errors)
920                 fprintf(stderr, "total %d failures\n", defrag_global_errors);
921
922         return !!defrag_global_errors;
923 }
924
925 static const char * const cmd_resize_usage[] = {
926         "btrfs filesystem resize [devid:][+/-]<newsize>[kKmMgGtTpPeE]|[devid:]max <path>",
927         "Resize a filesystem",
928         "If 'max' is passed, the filesystem will occupy all available space",
929         "on the device 'devid'.",
930         "[kK] means KiB, which denotes 1KiB = 1024B, 1MiB = 1024KiB, etc.",
931         NULL
932 };
933
934 static int cmd_resize(int argc, char **argv)
935 {
936         struct btrfs_ioctl_vol_args     args;
937         int     fd, res, len, e;
938         char    *amount, *path;
939         DIR     *dirstream = NULL;
940
941         if (check_argc_exact(argc, 3))
942                 usage(cmd_resize_usage);
943
944         amount = argv[1];
945         path = argv[2];
946
947         len = strlen(amount);
948         if (len == 0 || len >= BTRFS_VOL_NAME_MAX) {
949                 fprintf(stderr, "ERROR: size value too long ('%s)\n",
950                         amount);
951                 return 1;
952         }
953
954         fd = open_file_or_dir(path, &dirstream);
955         if (fd < 0) {
956                 fprintf(stderr, "ERROR: can't access '%s'\n", path);
957                 return 1;
958         }
959
960         printf("Resize '%s' of '%s'\n", path, amount);
961         strncpy_null(args.name, amount);
962         res = ioctl(fd, BTRFS_IOC_RESIZE, &args);
963         e = errno;
964         close_file_or_dir(fd, dirstream);
965         if( res < 0 ){
966                 fprintf(stderr, "ERROR: unable to resize '%s' - %s\n", 
967                         path, strerror(e));
968                 return 1;
969         }
970         return 0;
971 }
972
973 static const char * const cmd_label_usage[] = {
974         "btrfs filesystem label [<device>|<mount_point>] [<newlabel>]",
975         "Get or change the label of a filesystem",
976         "With one argument, get the label of filesystem on <device>.",
977         "If <newlabel> is passed, set the filesystem label to <newlabel>.",
978         NULL
979 };
980
981 static int cmd_label(int argc, char **argv)
982 {
983         if (check_argc_min(argc, 2) || check_argc_max(argc, 3))
984                 usage(cmd_label_usage);
985
986         if (argc > 2) {
987                 return set_label(argv[1], argv[2]);
988         } else {
989                 char label[BTRFS_LABEL_SIZE];
990                 int ret;
991
992                 ret = get_label(argv[1], label);
993                 if (!ret)
994                         fprintf(stdout, "%s\n", label);
995
996                 return ret;
997         }
998 }
999
1000 const struct cmd_group filesystem_cmd_group = {
1001         filesystem_cmd_group_usage, NULL, {
1002                 { "df", cmd_df, cmd_df_usage, NULL, 0 },
1003                 { "show", cmd_show, cmd_show_usage, NULL, 0 },
1004                 { "sync", cmd_sync, cmd_sync_usage, NULL, 0 },
1005                 { "defragment", cmd_defrag, cmd_defrag_usage, NULL, 0 },
1006                 { "balance", cmd_balance, NULL, &balance_cmd_group, 1 },
1007                 { "resize", cmd_resize, cmd_resize_usage, NULL, 0 },
1008                 { "label", cmd_label, cmd_label_usage, NULL, 0 },
1009                 NULL_CMD_STRUCT
1010         }
1011 };
1012
1013 int cmd_filesystem(int argc, char **argv)
1014 {
1015         return handle_command_group(&filesystem_cmd_group, argc, argv);
1016 }