btrfsctl: print usage when called with bad args
[platform/upstream/btrfs-progs.git] / btrfsctl.c
1 /*
2  * Copyright (C) 2007 Oracle.  All rights reserved.
3  *
4  * This program is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU General Public
6  * License v2 as published by the Free Software Foundation.
7  *
8  * This program is distributed in the hope that it will be useful,
9  * but WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11  * General Public License for more details.
12  *
13  * You should have received a copy of the GNU General Public
14  * License along with this program; if not, write to the
15  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16  * Boston, MA 021110-1307, USA.
17  */
18
19 #ifndef __CHECKER__
20 #include <sys/ioctl.h>
21 #include <sys/mount.h>
22 #include "ioctl.h"
23 #endif
24 #include <stdio.h>
25 #include <stdlib.h>
26 #include <sys/types.h>
27 #include <sys/stat.h>
28 #include <fcntl.h>
29 #include <unistd.h>
30 #include <dirent.h>
31 #include "kerncompat.h"
32 #include "ctree.h"
33 #include "transaction.h"
34 #include "utils.h"
35
36 #ifdef __CHECKER__
37 #define BLKGETSIZE64 0
38 #define BTRFS_IOC_SNAP_CREATE 0
39 #define BTRFS_VOL_NAME_MAX 255
40 struct btrfs_ioctl_vol_args { char name[BTRFS_VOL_NAME_MAX]; };
41 static inline int ioctl(int fd, int define, void *arg) { return 0; }
42 #endif
43
44 void print_usage(void)
45 {
46         printf("usage: btrfsctl [ -s name ] [-d] [-r size] file_or_dir\n");
47         printf("\t-d filename defragments one file\n");
48         printf("\t-d directory defragments the entire Btree\n");
49         printf("\t-s snap_name existing_subvol creates a new snapshot\n");
50         printf("\t-s snap_name tree_root creates a new subvolume\n");
51         printf("\t-r [+-]size[gkm] resize the FS\n");
52         printf("\t-A device scans the device for a Btrfs filesystem\n");
53         printf("\t-a scans all devices for Btrfs filesystems\n");
54         exit(1);
55 }
56
57 int main(int ac, char **av)
58 {
59         char *fname;
60         int fd;
61         int ret;
62         struct btrfs_ioctl_vol_args args;
63         char *name = NULL;
64         int i;
65         struct stat st;
66         DIR *dirstream;
67         unsigned long command = 0;
68         int len;
69
70         if (ac == 2 && strcmp(av[1], "-a") == 0) {
71                 fprintf(stderr, "Scanning for Btrfs filesystems\n");
72                 btrfs_scan_one_dir("/dev", 1);
73                 exit(0);
74         }
75         for (i = 1; i < ac - 1; i++) {
76                 if (strcmp(av[i], "-s") == 0) {
77                         if (i + 1 >= ac - 1) {
78                                 fprintf(stderr, "-s requires an arg");
79                                 print_usage();
80                         }
81                         name = av[i + 1];
82                         len = strlen(name);
83                         if (len == 0 || len >= BTRFS_VOL_NAME_MAX) {
84                                 fprintf(stderr,
85                                      "snapshot name zero length or too long\n");
86                                 exit(1);
87                         }
88                         if (strchr(name, '/')) {
89                                 fprintf(stderr,
90                                         "error: / not allowed in names\n");
91                                 exit(1);
92                         }
93                         command = BTRFS_IOC_SNAP_CREATE;
94                 } else if (strcmp(av[i], "-d") == 0) {
95                         if (i >= ac - 1) {
96                                 fprintf(stderr, "-d requires an arg\n");
97                                 print_usage();
98                         }
99                         command = BTRFS_IOC_DEFRAG;
100                 } else if (strcmp(av[i], "-A") == 0) {
101                         if (i >= ac - 1) {
102                                 fprintf(stderr, "-A requires an arg\n");
103                                 print_usage();
104                         }
105                         command = BTRFS_IOC_SCAN_DEV;
106                 } else if (strcmp(av[i], "-r") == 0) {
107                         if (i >= ac - 1) {
108                                 fprintf(stderr, "-r requires an arg\n");
109                                 print_usage();
110                         }
111                         name = av[i + 1];
112                         len = strlen(name);
113                         if (len == 0 || len >= BTRFS_VOL_NAME_MAX) {
114                                 fprintf(stderr, "-r size too long\n");
115                                 exit(1);
116                         }
117                         command = BTRFS_IOC_RESIZE;
118                 }
119         }
120         if (command == 0) {
121                 fprintf(stderr, "no valid commands given\n");
122                 print_usage();
123                 exit(1);
124         }
125         fname = av[ac - 1];
126         ret = stat(fname, &st);
127         if (ret < 0) {
128                 perror("stat:");
129                 exit(1);
130         }
131         if (S_ISDIR(st.st_mode)) {
132                 dirstream = opendir(fname);
133                 if (!dirstream) {
134                         perror("opendir");
135                         exit(1);
136                 }
137                 fd = dirfd(dirstream);
138         } else if (command == BTRFS_IOC_SCAN_DEV) {
139                 fd = open("/dev/btrfs-control", O_RDWR);
140                 name = fname;
141         } else {
142                 fd = open(fname, O_RDWR);
143         }
144         if (fd < 0) {
145                 perror("open");
146                 exit(1);
147         }
148         if (name)
149                 strcpy(args.name, name);
150         else
151                 args.name[0] = '\0';
152         ret = ioctl(fd, command, &args);
153         if (ret < 0) {
154                 perror("ioctl:");
155                 exit(1);
156         }
157         printf("ioctl returns %d\n", ret);
158         return 0;
159 }
160