4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License (the "License").
6 * You may not use this file except in compliance with the License.
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 * or https://opensource.org/licenses/CDDL-1.0.
10 * See the License for the specific language governing permissions
11 * and limitations under the License.
13 * When distributing Covered Code, include this CDDL HEADER in each
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 * If applicable, add the following below this CDDL HEADER, with the
16 * fields enclosed by brackets "[]" replaced with your own identifying
17 * information: Portions Copyright [yyyy] [name of copyright owner]
22 * Copyright (c) 2018 Intel Corporation.
23 * Copyright (c) 2020 by Lawrence Livermore National Security, LLC.
28 #include <zfs_fletcher.h>
29 #include <sys/vdev_draid.h>
30 #include <sys/nvpair.h>
34 * The number of rows to generate for new permutation maps.
36 #define MAP_ROWS_DEFAULT 256
39 * Key values for dRAID maps when stored as nvlists.
41 #define MAP_SEED "seed"
42 #define MAP_CHECKSUM "checksum"
43 #define MAP_WORST_RATIO "worst_ratio"
44 #define MAP_AVG_RATIO "avg_ratio"
45 #define MAP_CHILDREN "children"
46 #define MAP_NPERMS "nperms"
47 #define MAP_PERMS "perms"
52 (void) fprintf(stderr
,
53 "usage: draid command args ...\n"
54 "Available commands are:\n"
56 "\tdraid generate [-cv] [-m min] [-n max] [-p passes] FILE\n"
57 "\tdraid verify [-rv] FILE\n"
58 "\tdraid dump [-v] [-m min] [-n max] FILE\n"
59 "\tdraid table FILE\n"
60 "\tdraid merge FILE SRC SRC...\n");
65 read_map(const char *filename
, nvlist_t
**allcfgs
)
67 int block_size
= 131072;
68 int buf_size
= 131072;
73 if (lstat64(filename
, &stat
) != 0)
76 if (stat
.st_size
== 0 ||
77 !(S_ISREG(stat
.st_mode
) || S_ISLNK(stat
.st_mode
))) {
81 gzFile fp
= gzopen(filename
, "rb");
85 char *buf
= malloc(buf_size
);
91 ssize_t rc
, bytes
= 0;
93 rc
= gzread(fp
, buf
+ bytes
, block_size
);
94 if ((rc
< 0) || (rc
== 0 && !gzeof(fp
))) {
96 (void) gzerror(fp
, &error
);
102 if (bytes
+ block_size
>= buf_size
) {
103 tmp_size
= 2 * buf_size
;
104 tmp_buf
= malloc(tmp_size
);
105 if (tmp_buf
== NULL
) {
111 memcpy(tmp_buf
, buf
, bytes
);
121 error
= nvlist_unpack(buf
, bytes
, allcfgs
, 0);
128 * Read a map from the specified filename. A file contains multiple maps
129 * which are indexed by the number of children. The caller is responsible
130 * for freeing the configuration returned.
133 read_map_key(const char *filename
, const char *key
, nvlist_t
**cfg
)
135 nvlist_t
*allcfgs
, *foundcfg
= NULL
;
138 error
= read_map(filename
, &allcfgs
);
142 (void) nvlist_lookup_nvlist(allcfgs
, key
, &foundcfg
);
143 if (foundcfg
!= NULL
) {
144 nvlist_dup(foundcfg
, cfg
, KM_SLEEP
);
150 nvlist_free(allcfgs
);
156 * Write all mappings to the map file.
159 write_map(const char *filename
, nvlist_t
*allcfgs
)
164 error
= nvlist_size(allcfgs
, &buflen
, NV_ENCODE_XDR
);
168 char *buf
= malloc(buflen
);
172 error
= nvlist_pack(allcfgs
, &buf
, &buflen
, NV_ENCODE_XDR
, KM_SLEEP
);
179 * Atomically update the file using a temporary file and the
180 * traditional unlink then rename steps. This code provides
181 * no locking, it only guarantees the packed nvlist on disk
182 * is updated atomically and is internally consistent.
184 char *tmpname
= calloc(1, MAXPATHLEN
);
185 if (tmpname
== NULL
) {
190 snprintf(tmpname
, MAXPATHLEN
- 1, "%s.XXXXXX", filename
);
192 int fd
= mkstemp(tmpname
);
201 gzFile fp
= gzopen(tmpname
, "w9b");
209 ssize_t rc
, bytes
= 0;
210 while (bytes
< buflen
) {
211 size_t size
= MIN(buflen
- bytes
, 131072);
212 rc
= gzwrite(fp
, buf
+ bytes
, size
);
215 (void) gzerror(fp
, &error
);
217 (void) unlink(tmpname
);
220 } else if (rc
== 0) {
230 if (bytes
!= buflen
) {
231 (void) unlink(tmpname
);
237 * Unlink the previous config file and replace it with the updated
238 * version. If we're able to unlink the file then directory is
239 * writable by us and the subsequent rename should never fail.
241 error
= unlink(filename
);
242 if (error
!= 0 && errno
!= ENOENT
) {
244 (void) unlink(tmpname
);
249 error
= rename(tmpname
, filename
);
252 (void) unlink(tmpname
);
263 * Add the dRAID map to the file and write it out.
266 write_map_key(const char *filename
, char *key
, draid_map_t
*map
,
267 double worst_ratio
, double avg_ratio
)
269 nvlist_t
*nv_cfg
, *allcfgs
;
273 * Add the configuration to an existing or new file. The new
274 * configuration will replace an existing configuration with the
275 * same key if it has a lower ratio and is therefore better.
277 error
= read_map(filename
, &allcfgs
);
278 if (error
== ENOENT
) {
279 allcfgs
= fnvlist_alloc();
280 } else if (error
!= 0) {
284 error
= nvlist_lookup_nvlist(allcfgs
, key
, &nv_cfg
);
286 uint64_t nv_cfg_worst_ratio
= fnvlist_lookup_uint64(nv_cfg
,
288 double nv_worst_ratio
= (double)nv_cfg_worst_ratio
/ 1000.0;
290 if (worst_ratio
< nv_worst_ratio
) {
291 /* Replace old map with the more balanced new map. */
292 fnvlist_remove(allcfgs
, key
);
294 /* The old map is preferable, keep it. */
295 nvlist_free(allcfgs
);
300 nvlist_t
*cfg
= fnvlist_alloc();
301 fnvlist_add_uint64(cfg
, MAP_SEED
, map
->dm_seed
);
302 fnvlist_add_uint64(cfg
, MAP_CHECKSUM
, map
->dm_checksum
);
303 fnvlist_add_uint64(cfg
, MAP_CHILDREN
, map
->dm_children
);
304 fnvlist_add_uint64(cfg
, MAP_NPERMS
, map
->dm_nperms
);
305 fnvlist_add_uint8_array(cfg
, MAP_PERMS
, map
->dm_perms
,
306 map
->dm_children
* map
->dm_nperms
* sizeof (uint8_t));
308 fnvlist_add_uint64(cfg
, MAP_WORST_RATIO
,
309 (uint64_t)(worst_ratio
* 1000.0));
310 fnvlist_add_uint64(cfg
, MAP_AVG_RATIO
,
311 (uint64_t)(avg_ratio
* 1000.0));
313 error
= nvlist_add_nvlist(allcfgs
, key
, cfg
);
315 error
= write_map(filename
, allcfgs
);
318 nvlist_free(allcfgs
);
323 dump_map(draid_map_t
*map
, const char *key
, double worst_ratio
,
324 double avg_ratio
, int verbose
)
328 } else if (verbose
== 1) {
329 printf(" \"%s\": seed: 0x%016llx worst_ratio: %2.03f "
330 "avg_ratio: %2.03f\n", key
, (u_longlong_t
)map
->dm_seed
,
331 worst_ratio
, avg_ratio
);
336 " checksum: 0x%016llx\n"
337 " worst_ratio: %2.03f\n"
338 " avg_ratio: %2.03f\n"
341 key
, (u_longlong_t
)map
->dm_seed
,
342 (u_longlong_t
)map
->dm_checksum
, worst_ratio
, avg_ratio
,
343 (u_longlong_t
)map
->dm_children
,
344 (u_longlong_t
)map
->dm_nperms
);
347 printf(" perms = {\n");
348 for (int i
= 0; i
< map
->dm_nperms
; i
++) {
350 for (int j
= 0; j
< map
->dm_children
; j
++) {
351 printf("%3d%s ", map
->dm_perms
[
352 i
* map
->dm_children
+ j
],
353 j
< map
->dm_children
- 1 ?
359 } else if (verbose
== 2) {
360 printf(" draid_perms = <omitted>\n");
366 dump_map_nv(const char *key
, nvlist_t
*cfg
, int verbose
)
371 uint64_t worst_ratio
= fnvlist_lookup_uint64(cfg
, MAP_WORST_RATIO
);
372 uint64_t avg_ratio
= fnvlist_lookup_uint64(cfg
, MAP_AVG_RATIO
);
374 map
.dm_seed
= fnvlist_lookup_uint64(cfg
, MAP_SEED
);
375 map
.dm_checksum
= fnvlist_lookup_uint64(cfg
, MAP_CHECKSUM
);
376 map
.dm_children
= fnvlist_lookup_uint64(cfg
, MAP_CHILDREN
);
377 map
.dm_nperms
= fnvlist_lookup_uint64(cfg
, MAP_NPERMS
);
378 map
.dm_perms
= fnvlist_lookup_uint8_array(cfg
, MAP_PERMS
, &c
);
380 dump_map(&map
, key
, (double)worst_ratio
/ 1000.0,
381 avg_ratio
/ 1000.0, verbose
);
385 * Print a summary of the mapping.
388 dump_map_key(const char *filename
, const char *key
, int verbose
)
393 error
= read_map_key(filename
, key
, &cfg
);
397 dump_map_nv(key
, cfg
, verbose
);
403 * Allocate a new permutation map for evaluation.
406 alloc_new_map(uint64_t children
, uint64_t nperms
, uint64_t seed
,
412 map
= malloc(sizeof (draid_map_t
));
416 map
->dm_children
= children
;
417 map
->dm_nperms
= nperms
;
419 map
->dm_checksum
= 0;
421 error
= vdev_draid_generate_perms(map
, &map
->dm_perms
);
433 * Allocate the fixed permutation map for N children.
436 alloc_fixed_map(uint64_t children
, draid_map_t
**mapp
)
438 const draid_map_t
*fixed_map
;
442 error
= vdev_draid_lookup_map(children
, &fixed_map
);
446 map
= malloc(sizeof (draid_map_t
));
450 memcpy(map
, fixed_map
, sizeof (draid_map_t
));
451 VERIFY3U(map
->dm_checksum
, !=, 0);
453 error
= vdev_draid_generate_perms(map
, &map
->dm_perms
);
465 * Free a permutation map.
468 free_map(draid_map_t
*map
)
475 * Check if dev is in the provided list of faulted devices.
477 static inline boolean_t
478 is_faulted(int *faulted_devs
, int nfaulted
, int dev
)
480 for (int i
= 0; i
< nfaulted
; i
++)
481 if (faulted_devs
[i
] == dev
)
488 * Evaluate how resilvering I/O will be distributed given a list of faulted
489 * vdevs. As a simplification we assume one IO is sufficient to repair each
490 * damaged device in a group.
493 eval_resilver(draid_map_t
*map
, uint64_t groupwidth
, uint64_t nspares
,
494 int *faulted_devs
, int nfaulted
, int *min_child_ios
, int *max_child_ios
)
496 uint64_t children
= map
->dm_children
;
497 uint64_t ngroups
= 1;
498 uint64_t ndisks
= children
- nspares
;
501 * Calculate the minimum number of groups required to fill a slice.
503 while (ngroups
* (groupwidth
) % (children
- nspares
) != 0)
506 int *ios
= calloc(map
->dm_children
, sizeof (uint64_t));
508 ASSERT3P(ios
, !=, NULL
);
510 /* Resilver all rows */
511 for (int i
= 0; i
< map
->dm_nperms
; i
++) {
512 uint8_t *row
= &map
->dm_perms
[i
* map
->dm_children
];
514 /* Resilver all groups with faulted drives */
515 for (int j
= 0; j
< ngroups
; j
++) {
516 uint64_t spareidx
= map
->dm_children
- nspares
;
517 boolean_t repair_needed
= B_FALSE
;
519 /* See if any devices in this group are faulted */
520 uint64_t groupstart
= (j
* groupwidth
) % ndisks
;
522 for (int k
= 0; k
< groupwidth
; k
++) {
523 uint64_t groupidx
= (groupstart
+ k
) % ndisks
;
525 repair_needed
= is_faulted(faulted_devs
,
526 nfaulted
, row
[groupidx
]);
531 if (repair_needed
== B_FALSE
)
535 * This group is degraded. Calculate the number of
536 * reads the non-faulted drives require and the number
537 * of writes to the distributed hot spare for this row.
539 for (int k
= 0; k
< groupwidth
; k
++) {
540 uint64_t groupidx
= (groupstart
+ k
) % ndisks
;
542 if (!is_faulted(faulted_devs
, nfaulted
,
544 ios
[row
[groupidx
]]++;
545 } else if (nspares
> 0) {
546 while (is_faulted(faulted_devs
,
547 nfaulted
, row
[spareidx
])) {
551 ASSERT3U(spareidx
, <, map
->dm_children
);
552 ios
[row
[spareidx
]]++;
559 *min_child_ios
= INT_MAX
;
563 * Find the drives with fewest and most required I/O. These values
564 * are used to calculate the imbalance ratio. To avoid returning an
565 * infinite value for permutations which have children that perform
566 * no IO a floor of 1 IO per child is set. This ensures a meaningful
567 * ratio is returned for comparison and it is not an uncommon when
568 * there are a large number of children.
570 for (int i
= 0; i
< map
->dm_children
; i
++) {
572 if (is_faulted(faulted_devs
, nfaulted
, i
)) {
580 if (ios
[i
] < *min_child_ios
)
581 *min_child_ios
= ios
[i
];
583 if (ios
[i
] > *max_child_ios
)
584 *max_child_ios
= ios
[i
];
587 ASSERT3S(*min_child_ios
, !=, INT_MAX
);
588 ASSERT3S(*max_child_ios
, !=, 0);
590 double ratio
= (double)(*max_child_ios
) / (double)(*min_child_ios
);
598 * Evaluate the quality of the permutation mapping by considering possible
599 * device failures. Returns the imbalance ratio for the worst mapping which
600 * is defined to be the largest number of child IOs over the fewest number
601 * child IOs. A value of 1.0 indicates the mapping is perfectly balance and
602 * all children perform an equal amount of work during reconstruction.
605 eval_decluster(draid_map_t
*map
, double *worst_ratiop
, double *avg_ratiop
)
607 uint64_t children
= map
->dm_children
;
608 double worst_ratio
= 1.0;
610 int worst_min_ios
= 0, worst_max_ios
= 0;
614 * When there are only 2 children there can be no distributed
615 * spare and no resilver to evaluate. Default to a ratio of 1.0
616 * for this degenerate case.
618 if (children
== VDEV_DRAID_MIN_CHILDREN
) {
625 * Score the mapping as if it had either 1 or 2 distributed spares.
627 for (int nspares
= 1; nspares
<= 2; nspares
++) {
628 uint64_t faults
= nspares
;
631 * Score groupwidths up to 19. This value was chosen as the
632 * largest reasonable width (16d+3p). dRAID pools may be still
633 * be created with wider stripes but they are not considered in
634 * this analysis in order to optimize for the most common cases.
636 for (uint64_t groupwidth
= 2;
637 groupwidth
<= MIN(children
- nspares
, 19);
640 int min_ios
, max_ios
;
643 * Score possible devices faults. This is limited
644 * to exactly one fault per distributed spare for
645 * the purposes of this similation.
647 for (int f1
= 0; f1
< children
; f1
++) {
648 faulted_devs
[0] = f1
;
652 ratio
= eval_resilver(map
, groupwidth
,
653 nspares
, faulted_devs
, faults
,
656 if (ratio
> worst_ratio
) {
658 worst_min_ios
= min_ios
;
659 worst_max_ios
= max_ios
;
664 } else if (faults
== 2) {
665 for (int f2
= f1
+ 1; f2
< children
;
667 faulted_devs
[1] = f2
;
669 ratio
= eval_resilver(map
,
671 faulted_devs
, faults
,
674 if (ratio
> worst_ratio
) {
676 worst_min_ios
= min_ios
;
677 worst_max_ios
= max_ios
;
688 *worst_ratiop
= worst_ratio
;
689 *avg_ratiop
= sum
/ n
;
692 * Log the min/max io values for particularly unbalanced maps.
693 * Since the maps are generated entirely randomly these are possible
694 * be exceedingly unlikely. We log it for possible investigation.
696 if (worst_ratio
> 100.0) {
697 dump_map(map
, "DEBUG", worst_ratio
, *avg_ratiop
, 2);
698 printf("worst_min_ios=%d worst_max_ios=%d\n",
699 worst_min_ios
, worst_max_ios
);
704 eval_maps(uint64_t children
, int passes
, uint64_t *map_seed
,
705 draid_map_t
**best_mapp
, double *best_ratiop
, double *avg_ratiop
)
707 draid_map_t
*best_map
= NULL
;
708 double best_worst_ratio
= 1000.0;
709 double best_avg_ratio
= 1000.0;
712 * Perform the requested number of passes evaluating randomly
713 * generated permutation maps. Only the best version is kept.
715 for (int i
= 0; i
< passes
; i
++) {
716 double worst_ratio
, avg_ratio
;
721 * Calculate the next seed and generate a new candidate map.
723 error
= alloc_new_map(children
, MAP_ROWS_DEFAULT
,
724 vdev_draid_rand(map_seed
), &map
);
726 if (best_map
!= NULL
)
732 * Consider maps with a lower worst_ratio to be of higher
733 * quality. Some maps may have a lower avg_ratio but they
734 * are discarded since they might include some particularly
735 * imbalanced permutations. The average is tracked to in
736 * order to get a sense of the average permutation quality.
738 eval_decluster(map
, &worst_ratio
, &avg_ratio
);
740 if (best_map
== NULL
|| worst_ratio
< best_worst_ratio
) {
742 if (best_map
!= NULL
)
746 best_worst_ratio
= worst_ratio
;
747 best_avg_ratio
= avg_ratio
;
754 * After determining the best map generate a checksum over the full
755 * permutation array. This checksum is verified when opening a dRAID
756 * pool to ensure the generated in memory permutations are correct.
759 fletcher_4_native_varsize(best_map
->dm_perms
,
760 sizeof (uint8_t) * best_map
->dm_children
* best_map
->dm_nperms
,
762 best_map
->dm_checksum
= cksum
.zc_word
[0];
764 *best_mapp
= best_map
;
765 *best_ratiop
= best_worst_ratio
;
766 *avg_ratiop
= best_avg_ratio
;
772 draid_generate(int argc
, char *argv
[])
774 char filename
[MAXPATHLEN
] = {0};
775 uint64_t map_seed
[2];
776 int c
, fd
, error
, verbose
= 0, passes
= 1, continuous
= 0;
777 int min_children
= VDEV_DRAID_MIN_CHILDREN
;
778 int max_children
= VDEV_DRAID_MAX_CHILDREN
;
781 while ((c
= getopt(argc
, argv
, ":cm:n:p:v")) != -1) {
787 min_children
= (int)strtol(optarg
, NULL
, 0);
788 if (min_children
< VDEV_DRAID_MIN_CHILDREN
) {
789 (void) fprintf(stderr
, "A minimum of 2 "
790 "children are required.\n");
796 max_children
= (int)strtol(optarg
, NULL
, 0);
797 if (max_children
> VDEV_DRAID_MAX_CHILDREN
) {
798 (void) fprintf(stderr
, "A maximum of %d "
799 "children are allowed.\n",
800 VDEV_DRAID_MAX_CHILDREN
);
805 passes
= (int)strtol(optarg
, NULL
, 0);
809 * 0 - Only log when a better map is added to the file.
810 * 1 - Log the current best map for each child count.
811 * Minimal output on a single summary line.
812 * 2 - Log the current best map for each child count.
813 * More verbose includes most map fields.
814 * 3 - Log the current best map for each child count.
815 * Very verbose all fields including the full map.
820 (void) fprintf(stderr
,
821 "missing argument for '%c' option\n", optopt
);
825 (void) fprintf(stderr
, "invalid option '%c'\n",
833 strlcpy(filename
, argv
[optind
], sizeof (filename
));
835 (void) fprintf(stderr
, "A FILE must be specified.\n");
841 * Start with a fresh seed from /dev/urandom.
843 fd
= open("/dev/urandom", O_RDONLY
);
845 printf("Unable to open /dev/urandom: %s\n:", strerror(errno
));
848 ssize_t bytes
= sizeof (map_seed
);
849 ssize_t bytes_read
= 0;
851 while (bytes_read
< bytes
) {
852 ssize_t rc
= read(fd
, ((char *)map_seed
) + bytes_read
,
855 printf("Unable to read /dev/urandom: %s\n:",
867 printf("Writing generated mappings to '%s':\n", filename
);
870 * Generate maps for all requested child counts. The best map for
871 * each child count is written out to the specified file. If the file
872 * already contains a better mapping this map will not be added.
874 for (uint64_t children
= min_children
;
875 children
<= max_children
; children
++) {
878 double worst_ratio
= 1000.0;
879 double avg_ratio
= 1000.0;
881 error
= eval_maps(children
, passes
, map_seed
, &map
,
882 &worst_ratio
, &avg_ratio
);
884 printf("Error eval_maps(): %s\n", strerror(error
));
888 if (worst_ratio
< 1.0 || avg_ratio
< 1.0) {
889 printf("Error ratio < 1.0: worst_ratio = %2.03f "
890 "avg_ratio = %2.03f\n", worst_ratio
, avg_ratio
);
894 snprintf(key
, 7, "%llu", (u_longlong_t
)children
);
895 error
= write_map_key(filename
, key
, map
, worst_ratio
,
898 /* The new map was added to the file. */
899 dump_map(map
, key
, worst_ratio
, avg_ratio
,
901 } else if (error
== EEXIST
) {
902 /* The existing map was preferable and kept. */
904 dump_map_key(filename
, key
, verbose
);
906 printf("Error write_map_key(): %s\n", strerror(error
));
914 * When the continuous option is set restart at the minimum number of
915 * children instead of exiting. This option is useful as a mechanism
916 * to continuous try and refine the discovered permutations.
920 printf("Restarting by request (-c): %d\n", restarts
);
928 * Verify each map in the file by generating its in-memory permutation array
929 * and comfirming its checksum is correct.
932 draid_verify(int argc
, char *argv
[])
934 char filename
[MAXPATHLEN
] = {0};
935 int n
= 0, c
, error
, verbose
= 1;
936 int check_ratios
= 0;
938 while ((c
= getopt(argc
, argv
, ":rv")) != -1) {
947 (void) fprintf(stderr
,
948 "missing argument for '%c' option\n", optopt
);
952 (void) fprintf(stderr
, "invalid option '%c'\n",
960 char *abspath
= malloc(MAXPATHLEN
);
964 if (realpath(argv
[optind
], abspath
) != NULL
)
965 strlcpy(filename
, abspath
, sizeof (filename
));
967 strlcpy(filename
, argv
[optind
], sizeof (filename
));
971 (void) fprintf(stderr
, "A FILE must be specified.\n");
975 printf("Verifying permutation maps: '%s'\n", filename
);
978 * Lookup hardcoded permutation map for each valid number of children
979 * and verify a generated map has the correct checksum. Then compare
980 * the generated map values with the nvlist map values read from the
981 * reference file to cross-check the permutation.
983 for (uint64_t children
= VDEV_DRAID_MIN_CHILDREN
;
984 children
<= VDEV_DRAID_MAX_CHILDREN
;
989 snprintf(key
, 8, "%llu", (u_longlong_t
)children
);
991 error
= alloc_fixed_map(children
, &map
);
993 printf("Error alloc_fixed_map() failed: %s\n",
994 error
== ECKSUM
? "Invalid checksum" :
999 uint64_t nv_seed
, nv_checksum
, nv_children
, nv_nperms
;
1004 error
= read_map_key(filename
, key
, &cfg
);
1006 printf("Error read_map_key() failed: %s\n",
1012 nv_seed
= fnvlist_lookup_uint64(cfg
, MAP_SEED
);
1013 nv_checksum
= fnvlist_lookup_uint64(cfg
, MAP_CHECKSUM
);
1014 nv_children
= fnvlist_lookup_uint64(cfg
, MAP_CHILDREN
);
1015 nv_nperms
= fnvlist_lookup_uint64(cfg
, MAP_NPERMS
);
1016 nvlist_lookup_uint8_array(cfg
, MAP_PERMS
, &nv_perms
, &c
);
1019 * Compare draid_map_t and nvlist reference values.
1021 if (map
->dm_seed
!= nv_seed
) {
1022 printf("Error different seeds: 0x%016llx != "
1023 "0x%016llx\n", (u_longlong_t
)map
->dm_seed
,
1024 (u_longlong_t
)nv_seed
);
1028 if (map
->dm_checksum
!= nv_checksum
) {
1029 printf("Error different checksums: 0x%016llx "
1031 (u_longlong_t
)map
->dm_checksum
,
1032 (u_longlong_t
)nv_checksum
);
1036 if (map
->dm_children
!= nv_children
) {
1037 printf("Error different children: %llu "
1038 "!= %llu\n", (u_longlong_t
)map
->dm_children
,
1039 (u_longlong_t
)nv_children
);
1043 if (map
->dm_nperms
!= nv_nperms
) {
1044 printf("Error different nperms: %llu "
1045 "!= %llu\n", (u_longlong_t
)map
->dm_nperms
,
1046 (u_longlong_t
)nv_nperms
);
1050 for (uint64_t i
= 0; i
< nv_children
* nv_nperms
; i
++) {
1051 if (map
->dm_perms
[i
] != nv_perms
[i
]) {
1052 printf("Error different perms[%llu]: "
1053 "%d != %d\n", (u_longlong_t
)i
,
1054 (int)map
->dm_perms
[i
],
1062 * For good measure recalculate the worst and average
1063 * ratios and confirm they match the nvlist values.
1066 uint64_t nv_worst_ratio
, nv_avg_ratio
;
1067 double worst_ratio
, avg_ratio
;
1069 eval_decluster(map
, &worst_ratio
, &avg_ratio
);
1071 nv_worst_ratio
= fnvlist_lookup_uint64(cfg
,
1073 nv_avg_ratio
= fnvlist_lookup_uint64(cfg
,
1076 if (worst_ratio
< 1.0 || avg_ratio
< 1.0) {
1077 printf("Error ratio out of range %2.03f, "
1078 "%2.03f\n", worst_ratio
, avg_ratio
);
1082 if ((uint64_t)(worst_ratio
* 1000.0) !=
1084 printf("Error different worst_ratio %2.03f "
1085 "!= %2.03f\n", (double)nv_worst_ratio
/
1086 1000.0, worst_ratio
);
1090 if ((uint64_t)(avg_ratio
* 1000.0) != nv_avg_ratio
) {
1091 printf("Error different average_ratio %2.03f "
1092 "!= %2.03f\n", (double)nv_avg_ratio
/
1105 printf("- %llu children: good\n",
1106 (u_longlong_t
)children
);
1114 if (n
!= (VDEV_DRAID_MAX_CHILDREN
- 1)) {
1115 printf("Error permutation maps missing: %d / %d checked\n",
1116 n
, VDEV_DRAID_MAX_CHILDREN
- 1);
1120 printf("Successfully verified %d / %d permutation maps\n",
1121 n
, VDEV_DRAID_MAX_CHILDREN
- 1);
1127 * Dump the contents of the specified mapping(s) for inspection.
1130 draid_dump(int argc
, char *argv
[])
1132 char filename
[MAXPATHLEN
] = {0};
1133 int c
, error
, verbose
= 1;
1134 int min_children
= VDEV_DRAID_MIN_CHILDREN
;
1135 int max_children
= VDEV_DRAID_MAX_CHILDREN
;
1137 while ((c
= getopt(argc
, argv
, ":vm:n:")) != -1) {
1140 min_children
= (int)strtol(optarg
, NULL
, 0);
1141 if (min_children
< 2) {
1142 (void) fprintf(stderr
, "A minimum of 2 "
1143 "children are required.\n");
1149 max_children
= (int)strtol(optarg
, NULL
, 0);
1150 if (max_children
> VDEV_DRAID_MAX_CHILDREN
) {
1151 (void) fprintf(stderr
, "A maximum of %d "
1152 "children are allowed.\n",
1153 VDEV_DRAID_MAX_CHILDREN
);
1161 (void) fprintf(stderr
,
1162 "missing argument for '%c' option\n", optopt
);
1166 (void) fprintf(stderr
, "invalid option '%c'\n",
1174 strlcpy(filename
, argv
[optind
], sizeof (filename
));
1176 (void) fprintf(stderr
, "A FILE must be specified.\n");
1181 * Dump maps for the requested child counts.
1183 for (uint64_t children
= min_children
;
1184 children
<= max_children
; children
++) {
1185 char key
[8] = { 0 };
1187 snprintf(key
, 7, "%llu", (u_longlong_t
)children
);
1188 error
= dump_map_key(filename
, key
, verbose
);
1190 printf("Error dump_map_key(): %s\n", strerror(error
));
1199 * Print all of the mappings as a C formatted draid_map_t array. This table
1200 * is found in the module/zcommon/zfs_draid.c file and is the definitive
1201 * source for all mapping used by dRAID. It cannot be updated without
1202 * changing the dRAID on disk format.
1205 draid_table(int argc
, char *argv
[])
1207 char filename
[MAXPATHLEN
] = {0};
1211 strlcpy(filename
, argv
[optind
], sizeof (filename
));
1213 (void) fprintf(stderr
, "A FILE must be specified.\n");
1217 printf("static const draid_map_t "
1218 "draid_maps[VDEV_DRAID_MAX_MAPS] = {\n");
1220 for (uint64_t children
= VDEV_DRAID_MIN_CHILDREN
;
1221 children
<= VDEV_DRAID_MAX_CHILDREN
;
1223 uint64_t seed
, checksum
, nperms
, avg_ratio
;
1227 snprintf(key
, 8, "%llu", (u_longlong_t
)children
);
1229 error
= read_map_key(filename
, key
, &cfg
);
1231 printf("Error read_map_key() failed: %s\n",
1236 seed
= fnvlist_lookup_uint64(cfg
, MAP_SEED
);
1237 checksum
= fnvlist_lookup_uint64(cfg
, MAP_CHECKSUM
);
1238 children
= fnvlist_lookup_uint64(cfg
, MAP_CHILDREN
);
1239 nperms
= fnvlist_lookup_uint64(cfg
, MAP_NPERMS
);
1240 avg_ratio
= fnvlist_lookup_uint64(cfg
, MAP_AVG_RATIO
);
1242 printf("\t{ %3llu, %3llu, 0x%016llx, 0x%016llx },\t"
1243 "/* %2.03f */\n", (u_longlong_t
)children
,
1244 (u_longlong_t
)nperms
, (u_longlong_t
)seed
,
1245 (u_longlong_t
)checksum
, (double)avg_ratio
/ 1000.0);
1256 draid_merge_impl(nvlist_t
*allcfgs
, const char *srcfilename
, int *mergedp
)
1259 nvpair_t
*elem
= NULL
;
1260 int error
, merged
= 0;
1262 error
= read_map(srcfilename
, &srccfgs
);
1266 while ((elem
= nvlist_next_nvpair(srccfgs
, elem
)) != NULL
) {
1267 uint64_t nv_worst_ratio
;
1268 uint64_t allcfg_worst_ratio
;
1269 nvlist_t
*cfg
, *allcfg
;
1272 switch (nvpair_type(elem
)) {
1273 case DATA_TYPE_NVLIST
:
1275 (void) nvpair_value_nvlist(elem
, &cfg
);
1276 key
= nvpair_name(elem
);
1278 nv_worst_ratio
= fnvlist_lookup_uint64(cfg
,
1281 error
= nvlist_lookup_nvlist(allcfgs
, key
, &allcfg
);
1283 allcfg_worst_ratio
= fnvlist_lookup_uint64(
1284 allcfg
, MAP_WORST_RATIO
);
1286 if (nv_worst_ratio
< allcfg_worst_ratio
) {
1287 fnvlist_remove(allcfgs
, key
);
1288 fnvlist_add_nvlist(allcfgs
, key
, cfg
);
1291 } else if (error
== ENOENT
) {
1292 fnvlist_add_nvlist(allcfgs
, key
, cfg
);
1304 nvlist_free(srccfgs
);
1312 * Merge the best map for each child count found in the listed files into
1313 * a new file. This allows 'draid generate' to be run in parallel and for
1314 * the results maps to be combined.
1317 draid_merge(int argc
, char *argv
[])
1319 char filename
[MAXPATHLEN
] = {0};
1320 int c
, error
, total_merged
= 0;
1323 while ((c
= getopt(argc
, argv
, ":")) != -1) {
1326 (void) fprintf(stderr
,
1327 "missing argument for '%c' option\n", optopt
);
1331 (void) fprintf(stderr
, "invalid option '%c'\n",
1339 (void) fprintf(stderr
,
1340 "A FILE and multiple SRCs must be specified.\n");
1344 strlcpy(filename
, argv
[optind
], sizeof (filename
));
1347 error
= read_map(filename
, &allcfgs
);
1348 if (error
== ENOENT
) {
1349 allcfgs
= fnvlist_alloc();
1350 } else if (error
!= 0) {
1351 printf("Error read_map(): %s\n", strerror(error
));
1355 while (optind
< argc
) {
1356 char srcfilename
[MAXPATHLEN
] = {0};
1359 strlcpy(srcfilename
, argv
[optind
], sizeof (srcfilename
));
1361 error
= draid_merge_impl(allcfgs
, srcfilename
, &merged
);
1363 printf("Error draid_merge_impl(): %s\n",
1365 nvlist_free(allcfgs
);
1369 total_merged
+= merged
;
1370 printf("Merged %d key(s) from '%s' into '%s'\n", merged
,
1371 srcfilename
, filename
);
1376 if (total_merged
> 0)
1377 write_map(filename
, allcfgs
);
1379 printf("Merged a total of %d key(s) into '%s'\n", total_merged
,
1382 nvlist_free(allcfgs
);
1388 main(int argc
, char *argv
[])
1393 char *subcommand
= argv
[1];
1395 if (strcmp(subcommand
, "generate") == 0) {
1396 return (draid_generate(argc
- 1, argv
+ 1));
1397 } else if (strcmp(subcommand
, "verify") == 0) {
1398 return (draid_verify(argc
- 1, argv
+ 1));
1399 } else if (strcmp(subcommand
, "dump") == 0) {
1400 return (draid_dump(argc
- 1, argv
+ 1));
1401 } else if (strcmp(subcommand
, "table") == 0) {
1402 return (draid_table(argc
- 1, argv
+ 1));
1403 } else if (strcmp(subcommand
, "merge") == 0) {
1404 return (draid_merge(argc
- 1, argv
+ 1));