]> git.sesse.net Git - bcachefs-tools-debian/blob - cmd_format.c
Unit handling cleanups
[bcachefs-tools-debian] / cmd_format.c
1 /*
2  * Authors: Kent Overstreet <kent.overstreet@gmail.com>
3  *          Gabriel de Perthuis <g2p.code@gmail.com>
4  *          Jacob Malevich <jam@datera.io>
5  *
6  * GPLv2
7  */
8 #include <ctype.h>
9 #include <errno.h>
10 #include <fcntl.h>
11 #include <getopt.h>
12 #include <stdbool.h>
13 #include <stdint.h>
14 #include <stdio.h>
15 #include <stdlib.h>
16 #include <string.h>
17 #include <sys/stat.h>
18 #include <sys/types.h>
19 #include <unistd.h>
20
21 #include <uuid/uuid.h>
22
23 #include "ccan/darray/darray.h"
24
25 #include "cmds.h"
26 #include "libbcachefs.h"
27 #include "crypto.h"
28 #include "libbcachefs/opts.h"
29 #include "libbcachefs/super-io.h"
30 #include "libbcachefs/util.h"
31
32 #define OPTS                                            \
33 x(0,    replicas,               required_argument)      \
34 x(0,    encrypted,              no_argument)            \
35 x(0,    no_passphrase,          no_argument)            \
36 x('L',  fs_label,               required_argument)      \
37 x('U',  uuid,                   required_argument)      \
38 x(0,    fs_size,                required_argument)      \
39 x(0,    superblock_size,        required_argument)      \
40 x(0,    bucket_size,            required_argument)      \
41 x('l',  label,                  required_argument)      \
42 x(0,    discard,                no_argument)            \
43 x(0,    data_allowed,           required_argument)      \
44 x(0,    durability,             required_argument)      \
45 x(0,    version,                required_argument)      \
46 x(0,    no_initialize,          no_argument)            \
47 x('f',  force,                  no_argument)            \
48 x('q',  quiet,                  no_argument)            \
49 x('h',  help,                   no_argument)
50
51 static void usage(void)
52 {
53         puts("bcachefs format - create a new bcachefs filesystem on one or more devices\n"
54              "Usage: bcachefs format [OPTION]... <devices>\n"
55              "\n"
56              "Options:");
57
58         bch2_opts_usage(OPT_FORMAT);
59
60         puts(
61              "      --replicas=#            Sets both data and metadata replicas\n"
62              "      --encrypted             Enable whole filesystem encryption (chacha20/poly1305)\n"
63              "      --no_passphrase         Don't encrypt master encryption key\n"
64              "  -L, --fs_label=label\n"
65              "  -U, --uuid=uuid\n"
66              "      --superblock_size=size\n"
67              "\n"
68              "Device specific options:");
69
70         bch2_opts_usage(OPT_DEVICE);
71
72         puts("  -l, --label=label           Disk label\n"
73              "\n"
74              "  -f, --force\n"
75              "  -q, --quiet                 Only print errors\n"
76              "  -h, --help                  Display this help and exit\n"
77              "\n"
78              "Device specific options must come before corresponding devices, e.g.\n"
79              "  bcachefs format --label cache /dev/sdb /dev/sdc\n"
80              "\n"
81              "Report bugs to <linux-bcache@vger.kernel.org>");
82 }
83
84 enum {
85         O_no_opt = 1,
86 #define x(shortopt, longopt, arg)       O_##longopt,
87         OPTS
88 #undef x
89 };
90
91 #define x(shortopt, longopt, arg) {                     \
92         .name           = #longopt,                     \
93         .has_arg        = arg,                          \
94         .flag           = NULL,                         \
95         .val            = O_##longopt,                  \
96 },
97 static const struct option format_opts[] = {
98         OPTS
99         { NULL }
100 };
101 #undef x
102
103 u64 read_flag_list_or_die(char *opt, const char * const list[],
104                           const char *msg)
105 {
106         u64 v = bch2_read_flag_list(opt, list);
107         if (v == (u64) -1)
108                 die("Bad %s %s", msg, opt);
109
110         return v;
111 }
112
113 int cmd_format(int argc, char *argv[])
114 {
115         darray(struct dev_opts) devices;
116         darray(char *) device_paths;
117         struct format_opts opts = format_opts_default();
118         struct dev_opts dev_opts = dev_opts_default(), *dev;
119         bool force = false, no_passphrase = false, quiet = false, initialize = true;
120         unsigned v;
121         int opt;
122
123         darray_init(devices);
124         darray_init(device_paths);
125
126         struct bch_opt_strs fs_opt_strs =
127                 bch2_cmdline_opts_get(&argc, argv, OPT_FORMAT);
128         struct bch_opts fs_opts = bch2_parse_opts(fs_opt_strs);
129
130         while ((opt = getopt_long(argc, argv,
131                                   "-L:U:g:fqh",
132                                   format_opts,
133                                   NULL)) != -1)
134                 switch (opt) {
135                 case O_replicas:
136                         if (kstrtouint(optarg, 10, &v) ||
137                             !v ||
138                             v > BCH_REPLICAS_MAX)
139                                 die("invalid replicas");
140
141                         opt_set(fs_opts, metadata_replicas, v);
142                         opt_set(fs_opts, data_replicas, v);
143                         break;
144                 case O_encrypted:
145                         opts.encrypted = true;
146                         break;
147                 case O_no_passphrase:
148                         no_passphrase = true;
149                         break;
150                 case O_fs_label:
151                 case 'L':
152                         opts.label = optarg;
153                         break;
154                 case O_uuid:
155                 case 'U':
156                         if (uuid_parse(optarg, opts.uuid.b))
157                                 die("Bad uuid");
158                         break;
159                 case O_force:
160                 case 'f':
161                         force = true;
162                         break;
163                 case O_fs_size:
164                         if (bch2_strtoull_h(optarg, &dev_opts.size))
165                                 die("invalid filesystem size");
166                         break;
167                 case O_superblock_size:
168                         if (bch2_strtouint_h(optarg, &opts.superblock_size))
169                                 die("invalid filesystem size");
170
171                         opts.superblock_size >>= 9;
172                         break;
173                 case O_bucket_size:
174                         if (bch2_strtoull_h(optarg, &dev_opts.bucket_size))
175                                 die("bad bucket_size %s", optarg);
176                         break;
177                 case O_label:
178                 case 'l':
179                         dev_opts.label = optarg;
180                         break;
181                 case O_discard:
182                         dev_opts.discard = true;
183                         break;
184                 case O_data_allowed:
185                         dev_opts.data_allowed =
186                                 read_flag_list_or_die(optarg,
187                                         bch2_data_types, "data type");
188                         break;
189                 case O_durability:
190                         if (kstrtouint(optarg, 10, &dev_opts.durability) ||
191                             dev_opts.durability > BCH_REPLICAS_MAX)
192                                 die("invalid durability");
193                         break;
194                 case O_version:
195                         if (kstrtouint(optarg, 10, &opts.version))
196                                 die("invalid version");
197                         break;
198                 case O_no_initialize:
199                         initialize = false;
200                         break;
201                 case O_no_opt:
202                         darray_append(device_paths, optarg);
203                         dev_opts.path = optarg;
204                         darray_append(devices, dev_opts);
205                         dev_opts.size = 0;
206                         break;
207                 case O_quiet:
208                 case 'q':
209                         quiet = true;
210                         break;
211                 case O_help:
212                 case 'h':
213                         usage();
214                         exit(EXIT_SUCCESS);
215                         break;
216                 case '?':
217                         exit(EXIT_FAILURE);
218                         break;
219                 }
220
221         if (darray_empty(devices))
222                 die("Please supply a device");
223
224         if (opts.encrypted && !no_passphrase) {
225                 opts.passphrase = read_passphrase_twice("Enter passphrase: ");
226                 initialize = false;
227         }
228
229         darray_foreach(dev, devices)
230                 dev->fd = open_for_format(dev->path, force);
231
232         struct bch_sb *sb =
233                 bch2_format(fs_opt_strs,
234                             fs_opts,
235                             opts,
236                             devices.item, darray_size(devices));
237         bch2_opt_strs_free(&fs_opt_strs);
238
239         if (!quiet)
240                 bch2_sb_print(sb, false, 1 << BCH_SB_FIELD_members, HUMAN_READABLE);
241         free(sb);
242
243         if (opts.passphrase) {
244                 memzero_explicit(opts.passphrase, strlen(opts.passphrase));
245                 free(opts.passphrase);
246         }
247
248         darray_free(devices);
249
250         if (initialize) {
251                 /*
252                  * Start the filesystem once, to allocate the journal and create
253                  * the root directory:
254                  */
255                 struct bch_fs *c = bch2_fs_open(device_paths.item,
256                                                 darray_size(device_paths),
257                                                 bch2_opts_empty());
258                 if (IS_ERR(c))
259                         die("error opening %s: %s", device_paths.item[0],
260                             strerror(-PTR_ERR(c)));
261
262                 bch2_fs_stop(c);
263         }
264
265         darray_free(device_paths);
266
267         return 0;
268 }
269
270 static void show_super_usage(void)
271 {
272         puts("bcachefs show-super \n"
273              "Usage: bcachefs show-super [OPTION].. device\n"
274              "\n"
275              "Options:\n"
276              "  -f, --fields=(fields)       list of sections to print\n"
277              "  -l, --layout                print superblock layout\n"
278              "  -h, --help                  display this help and exit\n"
279              "Report bugs to <linux-bcache@vger.kernel.org>");
280         exit(EXIT_SUCCESS);
281 }
282
283 int cmd_show_super(int argc, char *argv[])
284 {
285         static const struct option longopts[] = {
286                 { "fields",                     1, NULL, 'f' },
287                 { "layout",                     0, NULL, 'l' },
288                 { "help",                       0, NULL, 'h' },
289                 { NULL }
290         };
291         unsigned fields = 1 << BCH_SB_FIELD_members;
292         bool print_layout = false;
293         int opt;
294
295         while ((opt = getopt_long(argc, argv, "f:lh", longopts, NULL)) != -1)
296                 switch (opt) {
297                 case 'f':
298                         fields = !strcmp(optarg, "all")
299                                 ? ~0
300                                 : read_flag_list_or_die(optarg,
301                                         bch2_sb_fields, "superblock field");
302                         break;
303                 case 'l':
304                         print_layout = true;
305                         break;
306                 case 'h':
307                         show_super_usage();
308                         break;
309                 }
310         args_shift(optind);
311
312         char *dev = arg_pop();
313         if (!dev)
314                 die("please supply a device");
315         if (argc)
316                 die("too many arguments");
317
318         struct bch_opts opts = bch2_opts_empty();
319
320         opt_set(opts, noexcl,   true);
321         opt_set(opts, nochanges, true);
322
323         struct bch_sb_handle sb;
324         int ret = bch2_read_super(dev, &opts, &sb);
325         if (ret)
326                 die("Error opening %s: %s", dev, strerror(-ret));
327
328         bch2_sb_print(sb.sb, print_layout, fields, HUMAN_READABLE);
329         bch2_free_super(&sb);
330         return 0;
331 }