]> git.sesse.net Git - bcachefs-tools-debian/blob - cmd_device.c
Update bcachefs sources to e2b8120595 bcachefs: Use x-macros for more enums
[bcachefs-tools-debian] / cmd_device.c
1 #include <errno.h>
2 #include <fcntl.h>
3 #include <getopt.h>
4 #include <libgen.h>
5 #include <stdbool.h>
6 #include <stdint.h>
7 #include <stdio.h>
8 #include <stdlib.h>
9 #include <string.h>
10 #include <sys/ioctl.h>
11 #include <sys/stat.h>
12 #include <sys/types.h>
13 #include <unistd.h>
14
15 #include "libbcachefs/bcachefs.h"
16 #include "libbcachefs/bcachefs_ioctl.h"
17 #include "libbcachefs/journal.h"
18 #include "libbcachefs/super-io.h"
19 #include "cmds.h"
20 #include "libbcachefs.h"
21 #include "libbcachefs/opts.h"
22 #include "tools-util.h"
23
24 static void device_add_usage(void)
25 {
26         puts("bcachefs device add - add a device to an existing filesystem\n"
27              "Usage: bcachefs device add [OPTION]... filesystem device\n"
28              "\n"
29              "Options:\n"
30              "  -S, --fs_size=size          Size of filesystem on device\n"
31              "  -B, --bucket=size           Bucket size\n"
32              "  -D, --discard               Enable discards\n"
33              "  -g, --group=group           Disk group\n"
34              "  -f, --force                 Use device even if it appears to already be formatted\n"
35              "  -h, --help                  Display this help and exit\n"
36              "\n"
37              "Report bugs to <linux-bcache@vger.kernel.org>");
38 }
39
40 int cmd_device_add(int argc, char *argv[])
41 {
42         static const struct option longopts[] = {
43                 { "fs_size",            required_argument,      NULL, 'S' },
44                 { "bucket",             required_argument,      NULL, 'B' },
45                 { "discard",            no_argument,            NULL, 'D' },
46                 { "group",              required_argument,      NULL, 'g' },
47                 { "force",              no_argument,            NULL, 'f' },
48                 { "help",               no_argument,            NULL, 'h' },
49                 { NULL }
50         };
51         struct format_opts format_opts  = format_opts_default();
52         struct dev_opts dev_opts        = dev_opts_default();
53         bool force = false;
54         int opt;
55
56         while ((opt = getopt_long(argc, argv, "t:fh",
57                                   longopts, NULL)) != -1)
58                 switch (opt) {
59                 case 'S':
60                         if (bch2_strtoull_h(optarg, &dev_opts.size))
61                                 die("invalid filesystem size");
62
63                         dev_opts.size >>= 9;
64                         break;
65                 case 'B':
66                         dev_opts.bucket_size =
67                                 hatoi_validate(optarg, "bucket size");
68                         break;
69                 case 'D':
70                         dev_opts.discard = true;
71                         break;
72                 case 'g':
73                         dev_opts.group = strdup(optarg);
74                         break;
75                 case 'f':
76                         force = true;
77                         break;
78                 case 'h':
79                         device_add_usage();
80                         exit(EXIT_SUCCESS);
81                 }
82         args_shift(optind);
83
84         char *fs_path = arg_pop();
85         if (!fs_path)
86                 die("Please supply a filesystem");
87
88         char *dev_path = arg_pop();
89         if (!dev_path)
90                 die("Please supply a device");
91
92         if (argc)
93                 die("too many arguments");
94
95         struct bchfs_handle fs = bcache_fs_open(fs_path);
96
97         dev_opts.path = dev_path;
98         dev_opts.fd = open_for_format(dev_opts.path, force);
99
100         struct bch_opt_strs fs_opt_strs;
101         memset(&fs_opt_strs, 0, sizeof(fs_opt_strs));
102
103         struct bch_opts fs_opts = bch2_parse_opts(fs_opt_strs);
104
105         opt_set(fs_opts, block_size,
106                 read_file_u64(fs.sysfs_fd, "block_size") >> 9);
107         opt_set(fs_opts, btree_node_size,
108                 read_file_u64(fs.sysfs_fd, "btree_node_size") >> 9);
109
110         struct bch_sb *sb = bch2_format(fs_opt_strs,
111                                         fs_opts,
112                                         format_opts,
113                                         &dev_opts, 1);
114         free(sb);
115         fsync(dev_opts.fd);
116         close(dev_opts.fd);
117
118         bchu_disk_add(fs, dev_opts.path);
119         return 0;
120 }
121
122 static void device_remove_usage(void)
123 {
124         puts("bcachefs device_remove - remove a device from a filesystem\n"
125              "Usage:\n"
126              "  bcachefs device remove device\n"
127              "  bcachefs device remove --by-id path devid\n"
128              "\n"
129              "Options:\n"
130              "  -i, --by-id                 Remove device by device id\n"
131              "  -f, --force                 Force removal, even if some data\n"
132              "                              couldn't be migrated\n"
133              "  -F, --force-metadata        Force removal, even if some metadata\n"
134              "                              couldn't be migrated\n"
135              "  -h, --help                  display this help and exit\n"
136              "Report bugs to <linux-bcache@vger.kernel.org>");
137         exit(EXIT_SUCCESS);
138 }
139
140 int cmd_device_remove(int argc, char *argv[])
141 {
142         static const struct option longopts[] = {
143                 { "by-id",              0, NULL, 'i' },
144                 { "force",              0, NULL, 'f' },
145                 { "force-metadata",     0, NULL, 'F' },
146                 { "help",               0, NULL, 'h' },
147                 { NULL }
148         };
149         struct bchfs_handle fs;
150         bool by_id = false;
151         int opt, flags = BCH_FORCE_IF_DEGRADED;
152         unsigned dev_idx;
153
154         while ((opt = getopt_long(argc, argv, "fh", longopts, NULL)) != -1)
155                 switch (opt) {
156                 case 'i':
157                         by_id = true;
158                         break;
159                 case 'f':
160                         flags |= BCH_FORCE_IF_DATA_LOST;
161                         break;
162                 case 'F':
163                         flags |= BCH_FORCE_IF_METADATA_LOST;
164                         break;
165                 case 'h':
166                         device_remove_usage();
167                 }
168         args_shift(optind);
169
170         if (by_id) {
171                 char *path = arg_pop();
172                 if (!path)
173                         die("Please supply filesystem to remove device from");
174
175                 char *dev_str = arg_pop();
176                 if (!dev_str)
177                         die("Please supply device id");
178
179                 errno = 0;
180                 dev_idx = strtoul(dev_str, NULL, 10);
181                 if (errno)
182                         die("Error parsing device id: %m");
183
184                 fs = bcache_fs_open(path);
185         } else {
186                 char *dev = arg_pop();
187                 if (!dev)
188                         die("Please supply a device to remove");
189
190                 fs = bchu_fs_open_by_dev(dev, &dev_idx);
191         }
192
193         if (argc)
194                 die("too many arguments");
195
196         bchu_disk_remove(fs, dev_idx, flags);
197         return 0;
198 }
199
200 static void device_online_usage(void)
201 {
202         puts("bcachefs device online - readd a device to a running filesystem\n"
203              "Usage: bcachefs device online [OPTION]... device\n"
204              "\n"
205              "Options:\n"
206              "  -h, --help                  Display this help and exit\n"
207              "\n"
208              "Report bugs to <linux-bcache@vger.kernel.org>");
209 }
210
211 int cmd_device_online(int argc, char *argv[])
212 {
213         int opt;
214
215         while ((opt = getopt(argc, argv, "h")) != -1)
216                 switch (opt) {
217                 case 'h':
218                         device_online_usage();
219                         exit(EXIT_SUCCESS);
220                 }
221         args_shift(optind);
222
223         char *dev = arg_pop();
224         if (!dev)
225                 die("Please supply a device");
226
227         if (argc)
228                 die("too many arguments");
229
230         unsigned dev_idx;
231         struct bchfs_handle fs = bchu_fs_open_by_dev(dev, &dev_idx);
232         bchu_disk_online(fs, dev);
233         return 0;
234 }
235
236 static void device_offline_usage(void)
237 {
238         puts("bcachefs device offline - take a device offline, without removing it\n"
239              "Usage: bcachefs device offline [OPTION]... device\n"
240              "\n"
241              "Options:\n"
242              "  -f, --force                 Force, if data redundancy will be degraded\n"
243              "  -h, --help                  Display this help and exit\n"
244              "\n"
245              "Report bugs to <linux-bcache@vger.kernel.org>");
246 }
247
248 int cmd_device_offline(int argc, char *argv[])
249 {
250         static const struct option longopts[] = {
251                 { "force",              0, NULL, 'f' },
252                 { NULL }
253         };
254         int opt, flags = 0;
255
256         while ((opt = getopt_long(argc, argv, "fh",
257                                   longopts, NULL)) != -1)
258                 switch (opt) {
259                 case 'f':
260                         flags |= BCH_FORCE_IF_DEGRADED;
261                         break;
262                 case 'h':
263                         device_offline_usage();
264                         exit(EXIT_SUCCESS);
265                 }
266         args_shift(optind);
267
268         char *dev = arg_pop();
269         if (!dev)
270                 die("Please supply a device");
271
272         if (argc)
273                 die("too many arguments");
274
275         unsigned dev_idx;
276         struct bchfs_handle fs = bchu_fs_open_by_dev(dev, &dev_idx);
277         bchu_disk_offline(fs, dev_idx, flags);
278         return 0;
279 }
280
281 static void device_evacuate_usage(void)
282 {
283         puts("bcachefs device evacuate - move data off of a given device\n"
284              "Usage: bcachefs device evacuate [OPTION]... device\n"
285              "\n"
286              "Options:\n"
287              "  -h, --help                  Display this help and exit\n"
288              "\n"
289              "Report bugs to <linux-bcache@vger.kernel.org>");
290 }
291
292 int cmd_device_evacuate(int argc, char *argv[])
293 {
294         int opt;
295
296         while ((opt = getopt(argc, argv, "h")) != -1)
297                 switch (opt) {
298                 case 'h':
299                         device_evacuate_usage();
300                         exit(EXIT_SUCCESS);
301                 }
302         args_shift(optind);
303
304         char *dev_path = arg_pop();
305         if (!dev_path)
306                 die("Please supply a device");
307
308         if (argc)
309                 die("too many arguments");
310
311         unsigned dev_idx;
312         struct bchfs_handle fs = bchu_fs_open_by_dev(dev_path, &dev_idx);
313
314         struct bch_ioctl_dev_usage u = bchu_dev_usage(fs, dev_idx);
315
316         if (u.state == BCH_MEMBER_STATE_rw) {
317                 printf("Setting %s readonly\n", dev_path);
318                 bchu_disk_set_state(fs, dev_idx, BCH_MEMBER_STATE_ro, 0);
319         }
320
321         return bchu_data(fs, (struct bch_ioctl_data) {
322                 .op             = BCH_DATA_OP_MIGRATE,
323                 .start          = POS_MIN,
324                 .end            = POS_MAX,
325                 .migrate.dev    = dev_idx,
326         });
327 }
328
329 static void device_set_state_usage(void)
330 {
331         puts("bcachefs device set-state\n"
332              "Usage: bcachefs device set-state device new-state\n"
333              "\n"
334              "Options:\n"
335              "  -f, --force                 Force, if data redundancy will be degraded\n"
336              "  -o, --offline               Set state of an offline device\n"
337              "  -h, --help                  display this help and exit\n"
338              "Report bugs to <linux-bcache@vger.kernel.org>");
339         exit(EXIT_SUCCESS);
340 }
341
342 int cmd_device_set_state(int argc, char *argv[])
343 {
344         static const struct option longopts[] = {
345                 { "force",                      0, NULL, 'f' },
346                 { "offline",                    0, NULL, 'o' },
347                 { "help",                       0, NULL, 'h' },
348                 { NULL }
349         };
350         int opt, flags = 0;
351         bool offline = false;
352
353         while ((opt = getopt_long(argc, argv, "foh", longopts, NULL)) != -1)
354                 switch (opt) {
355                 case 'f':
356                         flags |= BCH_FORCE_IF_DEGRADED;
357                         break;
358                 case 'o':
359                         offline = true;
360                         break;
361                 case 'h':
362                         device_set_state_usage();
363                 }
364         args_shift(optind);
365
366         char *dev_path = arg_pop();
367         if (!dev_path)
368                 die("Please supply a device");
369
370         char *new_state_str = arg_pop();
371         if (!new_state_str)
372                 die("Please supply a device state");
373
374         unsigned new_state = read_string_list_or_die(new_state_str,
375                                         bch2_member_states, "device state");
376
377         if (!offline) {
378                 unsigned dev_idx;
379                 struct bchfs_handle fs = bchu_fs_open_by_dev(dev_path, &dev_idx);
380
381                 bchu_disk_set_state(fs, dev_idx, new_state, flags);
382
383                 bcache_fs_close(fs);
384         } else {
385                 struct bch_opts opts = bch2_opts_empty();
386                 struct bch_sb_handle sb = { NULL };
387
388                 int ret = bch2_read_super(dev_path, &opts, &sb);
389                 if (ret)
390                         die("error opening %s: %s", dev_path, strerror(-ret));
391
392                 struct bch_member *m = bch2_sb_get_members(sb.sb)->members + sb.sb->dev_idx;
393
394                 SET_BCH_MEMBER_STATE(m, new_state);
395
396                 le64_add_cpu(&sb.sb->seq, 1);
397
398                 bch2_super_write(sb.bdev->bd_fd, sb.sb);
399                 bch2_free_super(&sb);
400         }
401
402         return 0;
403 }
404
405 static void device_resize_usage(void)
406 {
407         puts("bcachefs device resize \n"
408              "Usage: bcachefs device resize device [ size ]\n"
409              "\n"
410              "Options:\n"
411              "  -h, --help                  display this help and exit\n"
412              "Report bugs to <linux-bcache@vger.kernel.org>");
413         exit(EXIT_SUCCESS);
414 }
415
416 int cmd_device_resize(int argc, char *argv[])
417 {
418         static const struct option longopts[] = {
419                 { "help",                       0, NULL, 'h' },
420                 { NULL }
421         };
422         u64 size;
423         int opt;
424
425         while ((opt = getopt_long(argc, argv, "h", longopts, NULL)) != -1)
426                 switch (opt) {
427                 case 'h':
428                         device_resize_usage();
429                 }
430         args_shift(optind);
431
432         char *dev = arg_pop();
433         if (!dev)
434                 die("Please supply a device to resize");
435
436         int dev_fd = xopen(dev, O_RDONLY);
437
438         char *size_arg = arg_pop();
439         if (!size_arg)
440                 size = get_size(dev, dev_fd);
441         else if (bch2_strtoull_h(size_arg, &size))
442                 die("invalid size");
443
444         size >>= 9;
445
446         if (argc)
447                 die("Too many arguments");
448
449         struct stat dev_stat = xfstat(dev_fd);
450
451         struct mntent *mount = dev_to_mount(dev);
452         if (mount) {
453                 if (!S_ISBLK(dev_stat.st_mode))
454                         die("%s is mounted but isn't a block device?!", dev);
455
456                 printf("Doing online resize of %s\n", dev);
457
458                 struct bchfs_handle fs = bcache_fs_open(mount->mnt_dir);
459
460                 unsigned idx = bchu_disk_get_idx(fs, dev_stat.st_rdev);
461
462                 struct bch_sb *sb = bchu_read_super(fs, -1);
463                 if (idx >= sb->nr_devices)
464                         die("error reading superblock: dev idx >= sb->nr_devices");
465
466                 struct bch_sb_field_members *mi = bch2_sb_get_members(sb);
467                 if (!mi)
468                         die("error reading superblock: no member info");
469
470                 /* could also just read this out of sysfs... meh */
471                 struct bch_member *m = mi->members + idx;
472
473                 u64 nbuckets = size / le16_to_cpu(m->bucket_size);
474
475                 printf("resizing %s to %llu buckets\n", dev, nbuckets);
476                 bchu_disk_resize(fs, idx, nbuckets);
477         } else {
478                 printf("Doing offline resize of %s\n", dev);
479
480                 struct bch_fs *c = bch2_fs_open(&dev, 1, bch2_opts_empty());
481                 if (IS_ERR(c))
482                         die("error opening %s: %s", dev, strerror(-PTR_ERR(c)));
483
484                 struct bch_dev *ca, *resize = NULL;
485                 unsigned i;
486
487                 for_each_online_member(ca, c, i) {
488                         if (resize)
489                                 die("confused: more than one online device?");
490                         resize = ca;
491                         percpu_ref_get(&resize->io_ref);
492                 }
493
494                 u64 nbuckets = size / le16_to_cpu(resize->mi.bucket_size);
495
496                 printf("resizing %s to %llu buckets\n", dev, nbuckets);
497                 int ret = bch2_dev_resize(c, resize, nbuckets);
498                 if (ret)
499                         fprintf(stderr, "resize error: %s\n", strerror(-ret));
500
501                 percpu_ref_put(&resize->io_ref);
502                 bch2_fs_stop(c);
503         }
504         return 0;
505 }
506
507 static void device_resize_journal_usage(void)
508 {
509         puts("bcachefs device resize-journal \n"
510              "Usage: bcachefs device resize-journal device [ size ]\n"
511              "\n"
512              "Options:\n"
513              "  -h, --help                  display this help and exit\n"
514              "Report bugs to <linux-bcache@vger.kernel.org>");
515         exit(EXIT_SUCCESS);
516 }
517
518 int cmd_device_resize_journal(int argc, char *argv[])
519 {
520         static const struct option longopts[] = {
521                 { "help",                       0, NULL, 'h' },
522                 { NULL }
523         };
524         u64 size;
525         int opt;
526
527         while ((opt = getopt_long(argc, argv, "h", longopts, NULL)) != -1)
528                 switch (opt) {
529                 case 'h':
530                         device_resize_journal_usage();
531                 }
532         args_shift(optind);
533
534         char *dev = arg_pop();
535         if (!dev)
536                 die("Please supply a device");
537
538         int dev_fd = xopen(dev, O_RDONLY);
539
540         char *size_arg = arg_pop();
541         if (!size_arg)
542                 size = get_size(dev, dev_fd);
543         else if (bch2_strtoull_h(size_arg, &size))
544                 die("invalid size");
545
546         size >>= 9;
547
548         if (argc)
549                 die("Too many arguments");
550
551         struct stat dev_stat = xfstat(dev_fd);
552
553         struct mntent *mount = dev_to_mount(dev);
554         if (mount) {
555                 if (!S_ISBLK(dev_stat.st_mode))
556                         die("%s is mounted but isn't a block device?!", dev);
557
558                 struct bchfs_handle fs = bcache_fs_open(mount->mnt_dir);
559
560                 unsigned idx = bchu_disk_get_idx(fs, dev_stat.st_rdev);
561
562                 struct bch_sb *sb = bchu_read_super(fs, -1);
563                 if (idx >= sb->nr_devices)
564                         die("error reading superblock: dev idx >= sb->nr_devices");
565
566                 struct bch_sb_field_members *mi = bch2_sb_get_members(sb);
567                 if (!mi)
568                         die("error reading superblock: no member info");
569
570                 /* could also just read this out of sysfs... meh */
571                 struct bch_member *m = mi->members + idx;
572
573                 u64 nbuckets = size / le16_to_cpu(m->bucket_size);
574
575                 printf("resizing journal on %s to %llu buckets\n", dev, nbuckets);
576                 bchu_disk_resize_journal(fs, idx, nbuckets);
577         } else {
578                 printf("%s is offline - starting:\n", dev);
579
580                 struct bch_fs *c = bch2_fs_open(&dev, 1, bch2_opts_empty());
581                 if (IS_ERR(c))
582                         die("error opening %s: %s", dev, strerror(-PTR_ERR(c)));
583
584                 struct bch_dev *ca, *resize = NULL;
585                 unsigned i;
586
587                 for_each_online_member(ca, c, i) {
588                         if (resize)
589                                 die("confused: more than one online device?");
590                         resize = ca;
591                         percpu_ref_get(&resize->io_ref);
592                 }
593
594                 u64 nbuckets = size / le16_to_cpu(resize->mi.bucket_size);
595
596                 printf("resizing journal on %s to %llu buckets\n", dev, nbuckets);
597                 int ret = bch2_set_nr_journal_buckets(c, resize, nbuckets);
598                 if (ret)
599                         fprintf(stderr, "resize error: %s\n", strerror(-ret));
600
601                 percpu_ref_put(&resize->io_ref);
602                 bch2_fs_stop(c);
603         }
604         return 0;
605 }