]> git.sesse.net Git - bcachefs-tools-debian/blob - libbcachefs.c
Add packaging workflow
[bcachefs-tools-debian] / libbcachefs.c
1 #include <ctype.h>
2 #include <dirent.h>
3 #include <errno.h>
4 #include <fcntl.h>
5 #include <stdbool.h>
6 #include <stdint.h>
7 #include <stdio.h>
8 #include <stdlib.h>
9 #include <string.h>
10 #include <sys/stat.h>
11 #include <sys/sysmacros.h>
12 #include <sys/types.h>
13 #include <time.h>
14 #include <unistd.h>
15
16 #include <uuid/uuid.h>
17
18 #include "libbcachefs.h"
19 #include "crypto.h"
20 #include "libbcachefs/bcachefs_format.h"
21 #include "libbcachefs/btree_cache.h"
22 #include "libbcachefs/checksum.h"
23 #include "libbcachefs/disk_groups.h"
24 #include "libbcachefs/journal_seq_blacklist.h"
25 #include "libbcachefs/opts.h"
26 #include "libbcachefs/replicas.h"
27 #include "libbcachefs/super-io.h"
28 #include "tools-util.h"
29
30 #define NSEC_PER_SEC    1000000000L
31
32 static void init_layout(struct bch_sb_layout *l,
33                         unsigned block_size,
34                         unsigned sb_size,
35                         u64 sb_start, u64 sb_end)
36 {
37         u64 sb_pos = sb_start;
38         unsigned i;
39
40         memset(l, 0, sizeof(*l));
41
42         l->magic                = BCHFS_MAGIC;
43         l->layout_type          = 0;
44         l->nr_superblocks       = 2;
45         l->sb_max_size_bits     = ilog2(sb_size);
46
47         /* Create two superblocks in the allowed range: */
48         for (i = 0; i < l->nr_superblocks; i++) {
49                 if (sb_pos != BCH_SB_SECTOR)
50                         sb_pos = round_up(sb_pos, block_size);
51
52                 l->sb_offset[i] = cpu_to_le64(sb_pos);
53                 sb_pos += sb_size;
54         }
55
56         if (sb_pos > sb_end)
57                 die("insufficient space for superblocks: start %llu end %llu > %llu size %u",
58                     sb_start, sb_pos, sb_end, sb_size);
59 }
60
61 /* minimum size filesystem we can create, given a bucket size: */
62 static u64 min_size(unsigned bucket_size)
63 {
64         return BCH_MIN_NR_NBUCKETS * bucket_size;
65 }
66
67 void bch2_pick_bucket_size(struct bch_opts opts, struct dev_opts *dev)
68 {
69         if (!dev->size)
70                 dev->size = get_size(dev->path, dev->fd);
71
72         if (!dev->bucket_size) {
73                 if (dev->size < min_size(opts.block_size))
74                         die("cannot format %s, too small (%llu bytes, min %llu)",
75                             dev->path, dev->size, min_size(opts.block_size));
76
77                 /* Bucket size must be >= block size: */
78                 dev->bucket_size = opts.block_size;
79
80                 /* Bucket size must be >= btree node size: */
81                 if (opt_defined(opts, btree_node_size))
82                         dev->bucket_size = max_t(unsigned, dev->bucket_size,
83                                                  opts.btree_node_size);
84
85                 /* Want a bucket size of at least 128k, if possible: */
86                 dev->bucket_size = max(dev->bucket_size, 128ULL << 10);
87
88                 if (dev->size >= min_size(dev->bucket_size)) {
89                         unsigned scale = max(1,
90                                 ilog2(dev->size / min_size(dev->bucket_size)) / 4);
91
92                         scale = rounddown_pow_of_two(scale);
93
94                         /* max bucket size 1 mb */
95                         dev->bucket_size = min(dev->bucket_size * scale, 1ULL << 20);
96                 } else {
97                         do {
98                                 dev->bucket_size /= 2;
99                         } while (dev->size < min_size(dev->bucket_size));
100                 }
101         }
102
103         dev->nbuckets = dev->size / dev->bucket_size;
104
105         if (dev->bucket_size < opts.block_size)
106                 die("Bucket size (%llu) cannot be smaller than block size (%u)",
107                     dev->bucket_size, opts.block_size);
108
109         if (opt_defined(opts, btree_node_size) &&
110             dev->bucket_size < opts.btree_node_size)
111                 die("Bucket size (%llu) cannot be smaller than btree node size (%u)",
112                     dev->bucket_size, opts.btree_node_size);
113
114         if (dev->nbuckets < BCH_MIN_NR_NBUCKETS)
115                 die("Not enough buckets: %llu, need %u (bucket size %llu)",
116                     dev->nbuckets, BCH_MIN_NR_NBUCKETS, dev->bucket_size);
117
118         if (dev->bucket_size > (u32) U16_MAX << 9)
119                 die("Bucket size (%llu) too big (max %u)",
120                     dev->bucket_size, (u32) U16_MAX << 9);
121 }
122
123 static unsigned parse_target(struct bch_sb_handle *sb,
124                              struct dev_opts *devs, size_t nr_devs,
125                              const char *s)
126 {
127         struct dev_opts *i;
128         int idx;
129
130         if (!s)
131                 return 0;
132
133         for (i = devs; i < devs + nr_devs; i++)
134                 if (!strcmp(s, i->path))
135                         return dev_to_target(i - devs);
136
137         idx = bch2_disk_path_find(sb, s);
138         if (idx >= 0)
139                 return group_to_target(idx);
140
141         die("Invalid target %s", s);
142         return 0;
143 }
144
145 struct bch_sb *bch2_format(struct bch_opt_strs  fs_opt_strs,
146                            struct bch_opts      fs_opts,
147                            struct format_opts   opts,
148                            struct dev_opts      *devs,
149                            size_t               nr_devs)
150 {
151         struct bch_sb_handle sb = { NULL };
152         struct dev_opts *i;
153         struct bch_sb_field_members *mi;
154         unsigned max_dev_block_size = 0;
155         unsigned opt_id;
156
157         for (i = devs; i < devs + nr_devs; i++)
158                 max_dev_block_size = max(max_dev_block_size,
159                                          get_blocksize(i->path, i->fd));
160
161         /* calculate block size: */
162         if (!opt_defined(fs_opts, block_size)) {
163                 opt_set(fs_opts, block_size, max_dev_block_size);
164         } else if (fs_opts.block_size < max_dev_block_size)
165                 die("blocksize too small: %u, must be greater than device blocksize %u",
166                     fs_opts.block_size, max_dev_block_size);
167
168         /* calculate bucket sizes: */
169         for (i = devs; i < devs + nr_devs; i++)
170                 bch2_pick_bucket_size(fs_opts, i);
171
172         /* calculate btree node size: */
173         if (!opt_defined(fs_opts, btree_node_size)) {
174                 /* 256k default btree node size */
175                 opt_set(fs_opts, btree_node_size, 256 << 10);
176
177                 for (i = devs; i < devs + nr_devs; i++)
178                         fs_opts.btree_node_size =
179                                 min_t(unsigned, fs_opts.btree_node_size,
180                                       i->bucket_size);
181         }
182
183         if (uuid_is_null(opts.uuid.b))
184                 uuid_generate(opts.uuid.b);
185
186         if (bch2_sb_realloc(&sb, 0))
187                 die("insufficient memory");
188
189         sb.sb->version          = le16_to_cpu(opts.version);
190         sb.sb->version_min      = le16_to_cpu(opts.version);
191         sb.sb->magic            = BCHFS_MAGIC;
192         sb.sb->user_uuid        = opts.uuid;
193         sb.sb->nr_devices       = nr_devs;
194
195         if (opts.version == bcachefs_metadata_version_current)
196                 sb.sb->features[0] |= BCH_SB_FEATURES_ALL;
197
198         uuid_generate(sb.sb->uuid.b);
199
200         if (opts.label)
201                 memcpy(sb.sb->label,
202                        opts.label,
203                        min(strlen(opts.label), sizeof(sb.sb->label)));
204
205         for (opt_id = 0;
206              opt_id < bch2_opts_nr;
207              opt_id++) {
208                 u64 v;
209
210                 v = bch2_opt_defined_by_id(&fs_opts, opt_id)
211                         ? bch2_opt_get_by_id(&fs_opts, opt_id)
212                         : bch2_opt_get_by_id(&bch2_opts_default, opt_id);
213
214                 __bch2_opt_set_sb(sb.sb, &bch2_opt_table[opt_id], v);
215         }
216
217         struct timespec now;
218         if (clock_gettime(CLOCK_REALTIME, &now))
219                 die("error getting current time: %m");
220
221         sb.sb->time_base_lo     = cpu_to_le64(now.tv_sec * NSEC_PER_SEC + now.tv_nsec);
222         sb.sb->time_precision   = cpu_to_le32(1);
223
224         /* Member info: */
225         mi = bch2_sb_resize_members(&sb,
226                         (sizeof(*mi) + sizeof(struct bch_member) *
227                         nr_devs) / sizeof(u64));
228
229         for (i = devs; i < devs + nr_devs; i++) {
230                 struct bch_member *m = mi->members + (i - devs);
231
232                 uuid_generate(m->uuid.b);
233                 m->nbuckets     = cpu_to_le64(i->nbuckets);
234                 m->first_bucket = 0;
235                 m->bucket_size  = cpu_to_le16(i->bucket_size >> 9);
236
237                 SET_BCH_MEMBER_DISCARD(m,       i->discard);
238                 SET_BCH_MEMBER_DATA_ALLOWED(m,  i->data_allowed);
239                 SET_BCH_MEMBER_DURABILITY(m,    i->durability + 1);
240         }
241
242         /* Disk labels*/
243         for (i = devs; i < devs + nr_devs; i++) {
244                 struct bch_member *m;
245                 int idx;
246
247                 if (!i->label)
248                         continue;
249
250                 idx = bch2_disk_path_find_or_create(&sb, i->label);
251                 if (idx < 0)
252                         die("error creating disk path: %s", strerror(-idx));
253
254                 /*
255                  * Recompute mi and m after each sb modification: its location
256                  * in memory may have changed due to reallocation.
257                  */
258                 mi = bch2_sb_get_members(sb.sb);
259                 m = mi->members + (i - devs);
260
261                 SET_BCH_MEMBER_GROUP(m, idx + 1);
262         }
263
264         SET_BCH_SB_FOREGROUND_TARGET(sb.sb,
265                 parse_target(&sb, devs, nr_devs, fs_opt_strs.foreground_target));
266         SET_BCH_SB_BACKGROUND_TARGET(sb.sb,
267                 parse_target(&sb, devs, nr_devs, fs_opt_strs.background_target));
268         SET_BCH_SB_PROMOTE_TARGET(sb.sb,
269                 parse_target(&sb, devs, nr_devs, fs_opt_strs.promote_target));
270         SET_BCH_SB_METADATA_TARGET(sb.sb,
271                 parse_target(&sb, devs, nr_devs, fs_opt_strs.metadata_target));
272
273         /* Crypt: */
274         if (opts.encrypted) {
275                 struct bch_sb_field_crypt *crypt =
276                         bch2_sb_resize_crypt(&sb, sizeof(*crypt) / sizeof(u64));
277
278                 bch_sb_crypt_init(sb.sb, crypt, opts.passphrase);
279                 SET_BCH_SB_ENCRYPTION_TYPE(sb.sb, 1);
280         }
281
282         for (i = devs; i < devs + nr_devs; i++) {
283                 u64 size_sectors = i->size >> 9;
284
285                 sb.sb->dev_idx = i - devs;
286
287                 if (!i->sb_offset) {
288                         i->sb_offset    = BCH_SB_SECTOR;
289                         i->sb_end       = size_sectors;
290                 }
291
292                 init_layout(&sb.sb->layout, fs_opts.block_size,
293                             opts.superblock_size,
294                             i->sb_offset, i->sb_end);
295
296                 /*
297                  * Also create a backup superblock at the end of the disk:
298                  *
299                  * If we're not creating a superblock at the default offset, it
300                  * means we're being run from the migrate tool and we could be
301                  * overwriting existing data if we write to the end of the disk:
302                  */
303                 if (i->sb_offset == BCH_SB_SECTOR) {
304                         struct bch_sb_layout *l = &sb.sb->layout;
305                         u64 backup_sb = size_sectors - (1 << l->sb_max_size_bits);
306
307                         backup_sb = rounddown(backup_sb, i->bucket_size >> 9);
308                         l->sb_offset[l->nr_superblocks++] = cpu_to_le64(backup_sb);
309                 }
310
311                 if (i->sb_offset == BCH_SB_SECTOR) {
312                         /* Zero start of disk */
313                         static const char zeroes[BCH_SB_SECTOR << 9];
314
315                         xpwrite(i->fd, zeroes, BCH_SB_SECTOR << 9, 0,
316                                 "zeroing start of disk");
317                 }
318
319                 bch2_super_write(i->fd, sb.sb);
320                 close(i->fd);
321         }
322
323         return sb.sb;
324 }
325
326 void bch2_super_write(int fd, struct bch_sb *sb)
327 {
328         struct nonce nonce = { 0 };
329
330         unsigned i;
331         for (i = 0; i < sb->layout.nr_superblocks; i++) {
332                 sb->offset = sb->layout.sb_offset[i];
333
334                 if (sb->offset == BCH_SB_SECTOR) {
335                         /* Write backup layout */
336                         xpwrite(fd, &sb->layout, sizeof(sb->layout),
337                                 BCH_SB_LAYOUT_SECTOR << 9,
338                                 "backup layout");
339                 }
340
341                 sb->csum = csum_vstruct(NULL, BCH_SB_CSUM_TYPE(sb), nonce, sb);
342                 xpwrite(fd, sb, vstruct_bytes(sb),
343                         le64_to_cpu(sb->offset) << 9,
344                         "superblock");
345         }
346
347         fsync(fd);
348 }
349
350 struct bch_sb *__bch2_super_read(int fd, u64 sector)
351 {
352         struct bch_sb sb, *ret;
353
354         xpread(fd, &sb, sizeof(sb), sector << 9);
355
356         if (memcmp(&sb.magic, &BCACHE_MAGIC, sizeof(sb.magic)) &&
357             memcmp(&sb.magic, &BCHFS_MAGIC, sizeof(sb.magic)))
358                 die("not a bcachefs superblock");
359
360         size_t bytes = vstruct_bytes(&sb);
361
362         ret = malloc(bytes);
363
364         xpread(fd, ret, bytes, sector << 9);
365
366         return ret;
367 }
368
369 /* ioctl interface: */
370
371 /* Global control device: */
372 int bcachectl_open(void)
373 {
374         return xopen("/dev/bcachefs-ctl", O_RDWR);
375 }
376
377 /* Filesystem handles (ioctl, sysfs dir): */
378
379 #define SYSFS_BASE "/sys/fs/bcachefs/"
380
381 void bcache_fs_close(struct bchfs_handle fs)
382 {
383         close(fs.ioctl_fd);
384         close(fs.sysfs_fd);
385 }
386
387 struct bchfs_handle bcache_fs_open(const char *path)
388 {
389         struct bchfs_handle ret;
390
391         if (!uuid_parse(path, ret.uuid.b)) {
392                 /* It's a UUID, look it up in sysfs: */
393                 char *sysfs = mprintf(SYSFS_BASE "%s", path);
394                 ret.sysfs_fd = xopen(sysfs, O_RDONLY);
395
396                 char *minor = read_file_str(ret.sysfs_fd, "minor");
397                 char *ctl = mprintf("/dev/bcachefs%s-ctl", minor);
398                 ret.ioctl_fd = xopen(ctl, O_RDWR);
399
400                 free(sysfs);
401                 free(minor);
402                 free(ctl);
403         } else {
404                 /* It's a path: */
405                 ret.ioctl_fd = open(path, O_RDONLY);
406                 if (ret.ioctl_fd < 0)
407                         die("Error opening filesystem at %s: %m", path);
408
409                 struct bch_ioctl_query_uuid uuid;
410                 if (ioctl(ret.ioctl_fd, BCH_IOCTL_QUERY_UUID, &uuid) < 0)
411                         die("error opening %s: not a bcachefs filesystem", path);
412
413                 ret.uuid = uuid.uuid;
414
415                 char uuid_str[40];
416                 uuid_unparse(uuid.uuid.b, uuid_str);
417
418                 char *sysfs = mprintf(SYSFS_BASE "%s", uuid_str);
419                 ret.sysfs_fd = xopen(sysfs, O_RDONLY);
420                 free(sysfs);
421         }
422
423         return ret;
424 }
425
426 /*
427  * Given a path to a block device, open the filesystem it belongs to; also
428  * return the device's idx:
429  */
430 struct bchfs_handle bchu_fs_open_by_dev(const char *path, int *idx)
431 {
432         char buf[1024], *uuid_str;
433
434         struct stat stat = xstat(path);
435
436         if (!S_ISBLK(stat.st_mode))
437                 die("%s is not a block device", path);
438
439         char *sysfs = mprintf("/sys/dev/block/%u:%u/bcachefs",
440                               major(stat.st_dev),
441                               minor(stat.st_dev));
442         ssize_t len = readlink(sysfs, buf, sizeof(buf));
443         free(sysfs);
444
445         if (len > 0) {
446                 char *p = strrchr(buf, '/');
447                 if (!p || sscanf(p + 1, "dev-%u", idx) != 1)
448                         die("error parsing sysfs");
449
450                 *p = '\0';
451                 p = strrchr(buf, '/');
452                 uuid_str = p + 1;
453         } else {
454                 struct bch_opts opts = bch2_opts_empty();
455
456                 opt_set(opts, noexcl,   true);
457                 opt_set(opts, nochanges, true);
458
459                 struct bch_sb_handle sb;
460                 int ret = bch2_read_super(path, &opts, &sb);
461                 if (ret)
462                         die("Error opening %s: %s", path, strerror(-ret));
463
464                 *idx = sb.sb->dev_idx;
465                 uuid_str = buf;
466                 uuid_unparse(sb.sb->user_uuid.b, uuid_str);
467
468                 bch2_free_super(&sb);
469         }
470
471         return bcache_fs_open(uuid_str);
472 }
473
474 int bchu_dev_path_to_idx(struct bchfs_handle fs, const char *dev_path)
475 {
476         int idx;
477         struct bchfs_handle fs2 = bchu_fs_open_by_dev(dev_path, &idx);
478
479         if (memcmp(&fs.uuid, &fs2.uuid, sizeof(fs.uuid)))
480                 idx = -1;
481         bcache_fs_close(fs2);
482         return idx;
483 }
484
485 int bchu_data(struct bchfs_handle fs, struct bch_ioctl_data cmd)
486 {
487         int progress_fd = xioctl(fs.ioctl_fd, BCH_IOCTL_DATA, &cmd);
488
489         while (1) {
490                 struct bch_ioctl_data_event e;
491
492                 if (read(progress_fd, &e, sizeof(e)) != sizeof(e))
493                         die("error reading from progress fd %m");
494
495                 if (e.type)
496                         continue;
497
498                 if (e.p.data_type == U8_MAX)
499                         break;
500
501                 printf("\33[2K\r");
502
503                 printf("%llu%% complete: current position %s",
504                        e.p.sectors_total
505                        ? e.p.sectors_done * 100 / e.p.sectors_total
506                        : 0,
507                        bch2_data_types[e.p.data_type]);
508
509                 switch (e.p.data_type) {
510                 case BCH_DATA_btree:
511                 case BCH_DATA_user:
512                         printf(" %s:%llu:%llu",
513                                bch2_btree_ids[e.p.btree_id],
514                                e.p.pos.inode,
515                                e.p.pos.offset);
516                 }
517
518                 fflush(stdout);
519                 sleep(1);
520         }
521         printf("\nDone\n");
522
523         close(progress_fd);
524         return 0;
525 }
526
527 /* option parsing */
528
529 void bch2_opt_strs_free(struct bch_opt_strs *opts)
530 {
531         unsigned i;
532
533         for (i = 0; i < bch2_opts_nr; i++) {
534                 free(opts->by_id[i]);
535                 opts->by_id[i] = NULL;
536         }
537 }
538
539 struct bch_opt_strs bch2_cmdline_opts_get(int *argc, char *argv[],
540                                           unsigned opt_types)
541 {
542         struct bch_opt_strs opts;
543         unsigned i = 1;
544
545         memset(&opts, 0, sizeof(opts));
546
547         while (i < *argc) {
548                 char *optstr = strcmp_prefix(argv[i], "--");
549                 char *valstr = NULL, *p;
550                 int optid, nr_args = 1;
551
552                 if (!optstr) {
553                         i++;
554                         continue;
555                 }
556
557                 optstr = strdup(optstr);
558
559                 p = optstr;
560                 while (isalpha(*p) || *p == '_')
561                         p++;
562
563                 if (*p == '=') {
564                         *p = '\0';
565                         valstr = p + 1;
566                 }
567
568                 optid = bch2_opt_lookup(optstr);
569                 if (optid < 0 ||
570                     !(bch2_opt_table[optid].flags & opt_types)) {
571                         i++;
572                         goto next;
573                 }
574
575                 if (!valstr &&
576                     bch2_opt_table[optid].type != BCH_OPT_BOOL) {
577                         nr_args = 2;
578                         valstr = argv[i + 1];
579                 }
580
581                 if (!valstr)
582                         valstr = "1";
583
584                 opts.by_id[optid] = strdup(valstr);
585
586                 *argc -= nr_args;
587                 memmove(&argv[i],
588                         &argv[i + nr_args],
589                         sizeof(char *) * (*argc - i));
590                 argv[*argc] = NULL;
591 next:
592                 free(optstr);
593         }
594
595         return opts;
596 }
597
598 struct bch_opts bch2_parse_opts(struct bch_opt_strs strs)
599 {
600         struct bch_opts opts = bch2_opts_empty();
601         struct printbuf err = PRINTBUF;
602         unsigned i;
603         int ret;
604         u64 v;
605
606         for (i = 0; i < bch2_opts_nr; i++) {
607                 if (!strs.by_id[i] ||
608                     bch2_opt_table[i].type == BCH_OPT_FN)
609                         continue;
610
611                 ret = bch2_opt_parse(NULL,
612                                      &bch2_opt_table[i],
613                                      strs.by_id[i], &v, &err);
614                 if (ret < 0)
615                         die("Invalid option %s", err.buf);
616
617                 bch2_opt_set_by_id(&opts, i, v);
618         }
619
620         printbuf_exit(&err);
621         return opts;
622 }
623
624 #define newline(c)              \
625         do {                    \
626                 printf("\n");   \
627                 c = 0;          \
628         } while(0)
629 void bch2_opts_usage(unsigned opt_types)
630 {
631         const struct bch_option *opt;
632         unsigned i, c = 0, helpcol = 30;
633
634
635
636         for (opt = bch2_opt_table;
637              opt < bch2_opt_table + bch2_opts_nr;
638              opt++) {
639                 if (!(opt->flags & opt_types))
640                         continue;
641
642                 c += printf("      --%s", opt->attr.name);
643
644                 switch (opt->type) {
645                 case BCH_OPT_BOOL:
646                         break;
647                 case BCH_OPT_STR:
648                         c += printf("=(");
649                         for (i = 0; opt->choices[i]; i++) {
650                                 if (i)
651                                         c += printf("|");
652                                 c += printf("%s", opt->choices[i]);
653                         }
654                         c += printf(")");
655                         break;
656                 default:
657                         c += printf("=%s", opt->hint);
658                         break;
659                 }
660
661                 if (opt->help) {
662                         const char *l = opt->help;
663
664                         if (c >= helpcol)
665                                 newline(c);
666
667                         while (1) {
668                                 const char *n = strchrnul(l, '\n');
669
670                                 while (c < helpcol) {
671                                         putchar(' ');
672                                         c++;
673                                 }
674                                 printf("%.*s", (int) (n - l), l);
675                                 newline(c);
676
677                                 if (!*n)
678                                         break;
679                                 l = n + 1;
680                         }
681                 } else {
682                         newline(c);
683                 }
684         }
685 }
686
687 dev_names bchu_fs_get_devices(struct bchfs_handle fs)
688 {
689         DIR *dir = fdopendir(fs.sysfs_fd);
690         struct dirent *d;
691         dev_names devs;
692
693         darray_init(&devs);
694
695         while ((errno = 0), (d = readdir(dir))) {
696                 struct dev_name n = { 0, NULL, NULL };
697
698                 if (sscanf(d->d_name, "dev-%u", &n.idx) != 1)
699                         continue;
700
701                 char *block_attr = mprintf("dev-%u/block", n.idx);
702
703                 char sysfs_block_buf[4096];
704                 ssize_t r = readlinkat(fs.sysfs_fd, block_attr,
705                                        sysfs_block_buf, sizeof(sysfs_block_buf));
706                 if (r > 0) {
707                         sysfs_block_buf[r] = '\0';
708                         n.dev = strdup(basename(sysfs_block_buf));
709                 }
710
711                 free(block_attr);
712
713                 char *label_attr = mprintf("dev-%u/label", n.idx);
714                 n.label = read_file_str(fs.sysfs_fd, label_attr);
715                 free(label_attr);
716
717                 darray_push(&devs, n);
718         }
719
720         closedir(dir);
721
722         return devs;
723 }