1 /*
2 * CDDL HEADER START
3 *
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.
7 *
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 * or http://www.opensolaris.org/os/licensing.
10 * See the License for the specific language governing permissions
11 * and limitations under the License.
12 *
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]
18 *
19 * CDDL HEADER END
20 */
21
22 /*
23 * Copyright (c) 2009, 2010, Oracle and/or its affiliates. All rights reserved.
24 * Copyright (c) 2012, 2016 by Delphix. All rights reserved.
25 */
26
27 #include <sys/zfs_context.h>
28 #include <sys/spa.h>
29 #include <sys/spa_impl.h>
30 #include <sys/zio.h>
31 #include <sys/ddt.h>
32 #include <sys/zap.h>
33 #include <sys/dmu_tx.h>
34 #include <sys/arc.h>
35 #include <sys/dsl_pool.h>
36 #include <sys/zio_checksum.h>
37 #include <sys/zio_compress.h>
38 #include <sys/dsl_scan.h>
39 #include <sys/abd.h>
40
41 /*
42 * Enable/disable prefetching of dedup-ed blocks which are going to be freed.
43 */
44 int zfs_dedup_prefetch = 1;
45
46 SYSCTL_DECL(_vfs_zfs);
47 SYSCTL_NODE(_vfs_zfs, OID_AUTO, dedup, CTLFLAG_RW, 0, "ZFS DEDUP");
48 SYSCTL_INT(_vfs_zfs_dedup, OID_AUTO, prefetch, CTLFLAG_RWTUN, &zfs_dedup_prefetch,
49 0, "Enable/disable prefetching of dedup-ed blocks which are going to be freed");
50
51 static const ddt_ops_t *ddt_ops[DDT_TYPES] = {
52 &ddt_zap_ops,
53 };
54
55 static const char *ddt_class_name[DDT_CLASSES] = {
56 "ditto",
57 "duplicate",
58 "unique",
59 };
60
61 static void
ddt_object_create(ddt_t * ddt,enum ddt_type type,enum ddt_class class,dmu_tx_t * tx)62 ddt_object_create(ddt_t *ddt, enum ddt_type type, enum ddt_class class,
63 dmu_tx_t *tx)
64 {
65 spa_t *spa = ddt->ddt_spa;
66 objset_t *os = ddt->ddt_os;
67 uint64_t *objectp = &ddt->ddt_object[type][class];
68 boolean_t prehash = zio_checksum_table[ddt->ddt_checksum].ci_flags &
69 ZCHECKSUM_FLAG_DEDUP;
70 char name[DDT_NAMELEN];
71
72 ddt_object_name(ddt, type, class, name);
73
74 ASSERT(*objectp == 0);
75 VERIFY(ddt_ops[type]->ddt_op_create(os, objectp, tx, prehash) == 0);
76 ASSERT(*objectp != 0);
77
78 VERIFY(zap_add(os, DMU_POOL_DIRECTORY_OBJECT, name,
79 sizeof (uint64_t), 1, objectp, tx) == 0);
80
81 VERIFY(zap_add(os, spa->spa_ddt_stat_object, name,
82 sizeof (uint64_t), sizeof (ddt_histogram_t) / sizeof (uint64_t),
83 &ddt->ddt_histogram[type][class], tx) == 0);
84 }
85
86 static void
ddt_object_destroy(ddt_t * ddt,enum ddt_type type,enum ddt_class class,dmu_tx_t * tx)87 ddt_object_destroy(ddt_t *ddt, enum ddt_type type, enum ddt_class class,
88 dmu_tx_t *tx)
89 {
90 spa_t *spa = ddt->ddt_spa;
91 objset_t *os = ddt->ddt_os;
92 uint64_t *objectp = &ddt->ddt_object[type][class];
93 uint64_t count;
94 char name[DDT_NAMELEN];
95
96 ddt_object_name(ddt, type, class, name);
97
98 ASSERT(*objectp != 0);
99 VERIFY(ddt_object_count(ddt, type, class, &count) == 0 && count == 0);
100 ASSERT(ddt_histogram_empty(&ddt->ddt_histogram[type][class]));
101 VERIFY(zap_remove(os, DMU_POOL_DIRECTORY_OBJECT, name, tx) == 0);
102 VERIFY(zap_remove(os, spa->spa_ddt_stat_object, name, tx) == 0);
103 VERIFY(ddt_ops[type]->ddt_op_destroy(os, *objectp, tx) == 0);
104 bzero(&ddt->ddt_object_stats[type][class], sizeof (ddt_object_t));
105
106 *objectp = 0;
107 }
108
109 static int
ddt_object_load(ddt_t * ddt,enum ddt_type type,enum ddt_class class)110 ddt_object_load(ddt_t *ddt, enum ddt_type type, enum ddt_class class)
111 {
112 ddt_object_t *ddo = &ddt->ddt_object_stats[type][class];
113 dmu_object_info_t doi;
114 uint64_t count;
115 char name[DDT_NAMELEN];
116 int error;
117
118 ddt_object_name(ddt, type, class, name);
119
120 error = zap_lookup(ddt->ddt_os, DMU_POOL_DIRECTORY_OBJECT, name,
121 sizeof (uint64_t), 1, &ddt->ddt_object[type][class]);
122
123 if (error != 0)
124 return (error);
125
126 VERIFY0(zap_lookup(ddt->ddt_os, ddt->ddt_spa->spa_ddt_stat_object, name,
127 sizeof (uint64_t), sizeof (ddt_histogram_t) / sizeof (uint64_t),
128 &ddt->ddt_histogram[type][class]));
129
130 /*
131 * Seed the cached statistics.
132 */
133 VERIFY(ddt_object_info(ddt, type, class, &doi) == 0);
134
135 error = ddt_object_count(ddt, type, class, &count);
136 if (error)
137 return error;
138
139 ddo->ddo_count = count;
140 ddo->ddo_dspace = doi.doi_physical_blocks_512 << 9;
141 ddo->ddo_mspace = doi.doi_fill_count * doi.doi_data_block_size;
142
143 return (0);
144 }
145
146 static void
ddt_object_sync(ddt_t * ddt,enum ddt_type type,enum ddt_class class,dmu_tx_t * tx)147 ddt_object_sync(ddt_t *ddt, enum ddt_type type, enum ddt_class class,
148 dmu_tx_t *tx)
149 {
150 ddt_object_t *ddo = &ddt->ddt_object_stats[type][class];
151 dmu_object_info_t doi;
152 uint64_t count;
153 char name[DDT_NAMELEN];
154
155 ddt_object_name(ddt, type, class, name);
156
157 VERIFY(zap_update(ddt->ddt_os, ddt->ddt_spa->spa_ddt_stat_object, name,
158 sizeof (uint64_t), sizeof (ddt_histogram_t) / sizeof (uint64_t),
159 &ddt->ddt_histogram[type][class], tx) == 0);
160
161 /*
162 * Cache DDT statistics; this is the only time they'll change.
163 */
164 VERIFY(ddt_object_info(ddt, type, class, &doi) == 0);
165 VERIFY(ddt_object_count(ddt, type, class, &count) == 0);
166
167 ddo->ddo_count = count;
168 ddo->ddo_dspace = doi.doi_physical_blocks_512 << 9;
169 ddo->ddo_mspace = doi.doi_fill_count * doi.doi_data_block_size;
170 }
171
172 static int
ddt_object_lookup(ddt_t * ddt,enum ddt_type type,enum ddt_class class,ddt_entry_t * dde)173 ddt_object_lookup(ddt_t *ddt, enum ddt_type type, enum ddt_class class,
174 ddt_entry_t *dde)
175 {
176 if (!ddt_object_exists(ddt, type, class))
177 return (SET_ERROR(ENOENT));
178
179 return (ddt_ops[type]->ddt_op_lookup(ddt->ddt_os,
180 ddt->ddt_object[type][class], dde));
181 }
182
183 static void
ddt_object_prefetch(ddt_t * ddt,enum ddt_type type,enum ddt_class class,ddt_entry_t * dde)184 ddt_object_prefetch(ddt_t *ddt, enum ddt_type type, enum ddt_class class,
185 ddt_entry_t *dde)
186 {
187 if (!ddt_object_exists(ddt, type, class))
188 return;
189
190 ddt_ops[type]->ddt_op_prefetch(ddt->ddt_os,
191 ddt->ddt_object[type][class], dde);
192 }
193
194 int
ddt_object_update(ddt_t * ddt,enum ddt_type type,enum ddt_class class,ddt_entry_t * dde,dmu_tx_t * tx)195 ddt_object_update(ddt_t *ddt, enum ddt_type type, enum ddt_class class,
196 ddt_entry_t *dde, dmu_tx_t *tx)
197 {
198 ASSERT(ddt_object_exists(ddt, type, class));
199
200 return (ddt_ops[type]->ddt_op_update(ddt->ddt_os,
201 ddt->ddt_object[type][class], dde, tx));
202 }
203
204 static int
ddt_object_remove(ddt_t * ddt,enum ddt_type type,enum ddt_class class,ddt_entry_t * dde,dmu_tx_t * tx)205 ddt_object_remove(ddt_t *ddt, enum ddt_type type, enum ddt_class class,
206 ddt_entry_t *dde, dmu_tx_t *tx)
207 {
208 ASSERT(ddt_object_exists(ddt, type, class));
209
210 return (ddt_ops[type]->ddt_op_remove(ddt->ddt_os,
211 ddt->ddt_object[type][class], dde, tx));
212 }
213
214 int
ddt_object_walk(ddt_t * ddt,enum ddt_type type,enum ddt_class class,uint64_t * walk,ddt_entry_t * dde)215 ddt_object_walk(ddt_t *ddt, enum ddt_type type, enum ddt_class class,
216 uint64_t *walk, ddt_entry_t *dde)
217 {
218 ASSERT(ddt_object_exists(ddt, type, class));
219
220 return (ddt_ops[type]->ddt_op_walk(ddt->ddt_os,
221 ddt->ddt_object[type][class], dde, walk));
222 }
223
224 int
ddt_object_count(ddt_t * ddt,enum ddt_type type,enum ddt_class class,uint64_t * count)225 ddt_object_count(ddt_t *ddt, enum ddt_type type, enum ddt_class class, uint64_t *count)
226 {
227 ASSERT(ddt_object_exists(ddt, type, class));
228
229 return (ddt_ops[type]->ddt_op_count(ddt->ddt_os,
230 ddt->ddt_object[type][class], count));
231 }
232
233 int
ddt_object_info(ddt_t * ddt,enum ddt_type type,enum ddt_class class,dmu_object_info_t * doi)234 ddt_object_info(ddt_t *ddt, enum ddt_type type, enum ddt_class class,
235 dmu_object_info_t *doi)
236 {
237 if (!ddt_object_exists(ddt, type, class))
238 return (SET_ERROR(ENOENT));
239
240 return (dmu_object_info(ddt->ddt_os, ddt->ddt_object[type][class],
241 doi));
242 }
243
244 boolean_t
ddt_object_exists(ddt_t * ddt,enum ddt_type type,enum ddt_class class)245 ddt_object_exists(ddt_t *ddt, enum ddt_type type, enum ddt_class class)
246 {
247 return (!!ddt->ddt_object[type][class]);
248 }
249
250 void
ddt_object_name(ddt_t * ddt,enum ddt_type type,enum ddt_class class,char * name)251 ddt_object_name(ddt_t *ddt, enum ddt_type type, enum ddt_class class,
252 char *name)
253 {
254 (void) sprintf(name, DMU_POOL_DDT,
255 zio_checksum_table[ddt->ddt_checksum].ci_name,
256 ddt_ops[type]->ddt_op_name, ddt_class_name[class]);
257 }
258
259 void
ddt_bp_fill(const ddt_phys_t * ddp,blkptr_t * bp,uint64_t txg)260 ddt_bp_fill(const ddt_phys_t *ddp, blkptr_t *bp, uint64_t txg)
261 {
262 ASSERT(txg != 0);
263
264 for (int d = 0; d < SPA_DVAS_PER_BP; d++)
265 bp->blk_dva[d] = ddp->ddp_dva[d];
266 BP_SET_BIRTH(bp, txg, ddp->ddp_phys_birth);
267 }
268
269 void
ddt_bp_create(enum zio_checksum checksum,const ddt_key_t * ddk,const ddt_phys_t * ddp,blkptr_t * bp)270 ddt_bp_create(enum zio_checksum checksum,
271 const ddt_key_t *ddk, const ddt_phys_t *ddp, blkptr_t *bp)
272 {
273 BP_ZERO(bp);
274
275 if (ddp != NULL)
276 ddt_bp_fill(ddp, bp, ddp->ddp_phys_birth);
277
278 bp->blk_cksum = ddk->ddk_cksum;
279 bp->blk_fill = 1;
280
281 BP_SET_LSIZE(bp, DDK_GET_LSIZE(ddk));
282 BP_SET_PSIZE(bp, DDK_GET_PSIZE(ddk));
283 BP_SET_COMPRESS(bp, DDK_GET_COMPRESS(ddk));
284 BP_SET_CHECKSUM(bp, checksum);
285 BP_SET_TYPE(bp, DMU_OT_DEDUP);
286 BP_SET_LEVEL(bp, 0);
287 BP_SET_DEDUP(bp, 0);
288 BP_SET_BYTEORDER(bp, ZFS_HOST_BYTEORDER);
289 }
290
291 void
ddt_key_fill(ddt_key_t * ddk,const blkptr_t * bp)292 ddt_key_fill(ddt_key_t *ddk, const blkptr_t *bp)
293 {
294 ddk->ddk_cksum = bp->blk_cksum;
295 ddk->ddk_prop = 0;
296
297 DDK_SET_LSIZE(ddk, BP_GET_LSIZE(bp));
298 DDK_SET_PSIZE(ddk, BP_GET_PSIZE(bp));
299 DDK_SET_COMPRESS(ddk, BP_GET_COMPRESS(bp));
300 }
301
302 void
ddt_phys_fill(ddt_phys_t * ddp,const blkptr_t * bp)303 ddt_phys_fill(ddt_phys_t *ddp, const blkptr_t *bp)
304 {
305 ASSERT(ddp->ddp_phys_birth == 0);
306
307 for (int d = 0; d < SPA_DVAS_PER_BP; d++)
308 ddp->ddp_dva[d] = bp->blk_dva[d];
309 ddp->ddp_phys_birth = BP_PHYSICAL_BIRTH(bp);
310 }
311
312 void
ddt_phys_clear(ddt_phys_t * ddp)313 ddt_phys_clear(ddt_phys_t *ddp)
314 {
315 bzero(ddp, sizeof (*ddp));
316 }
317
318 void
ddt_phys_addref(ddt_phys_t * ddp)319 ddt_phys_addref(ddt_phys_t *ddp)
320 {
321 ddp->ddp_refcnt++;
322 }
323
324 void
ddt_phys_decref(ddt_phys_t * ddp)325 ddt_phys_decref(ddt_phys_t *ddp)
326 {
327 ASSERT((int64_t)ddp->ddp_refcnt > 0);
328 ddp->ddp_refcnt--;
329 }
330
331 void
ddt_phys_free(ddt_t * ddt,ddt_key_t * ddk,ddt_phys_t * ddp,uint64_t txg)332 ddt_phys_free(ddt_t *ddt, ddt_key_t *ddk, ddt_phys_t *ddp, uint64_t txg)
333 {
334 blkptr_t blk;
335
336 ddt_bp_create(ddt->ddt_checksum, ddk, ddp, &blk);
337 ddt_phys_clear(ddp);
338 zio_free(ddt->ddt_spa, txg, &blk);
339 }
340
341 ddt_phys_t *
ddt_phys_select(const ddt_entry_t * dde,const blkptr_t * bp)342 ddt_phys_select(const ddt_entry_t *dde, const blkptr_t *bp)
343 {
344 ddt_phys_t *ddp = (ddt_phys_t *)dde->dde_phys;
345
346 for (int p = 0; p < DDT_PHYS_TYPES; p++, ddp++) {
347 if (DVA_EQUAL(BP_IDENTITY(bp), &ddp->ddp_dva[0]) &&
348 BP_PHYSICAL_BIRTH(bp) == ddp->ddp_phys_birth)
349 return (ddp);
350 }
351 return (NULL);
352 }
353
354 uint64_t
ddt_phys_total_refcnt(const ddt_entry_t * dde)355 ddt_phys_total_refcnt(const ddt_entry_t *dde)
356 {
357 uint64_t refcnt = 0;
358
359 for (int p = DDT_PHYS_SINGLE; p <= DDT_PHYS_TRIPLE; p++)
360 refcnt += dde->dde_phys[p].ddp_refcnt;
361
362 return (refcnt);
363 }
364
365 static void
ddt_stat_generate(ddt_t * ddt,ddt_entry_t * dde,ddt_stat_t * dds)366 ddt_stat_generate(ddt_t *ddt, ddt_entry_t *dde, ddt_stat_t *dds)
367 {
368 spa_t *spa = ddt->ddt_spa;
369 ddt_phys_t *ddp = dde->dde_phys;
370 ddt_key_t *ddk = &dde->dde_key;
371 uint64_t lsize = DDK_GET_LSIZE(ddk);
372 uint64_t psize = DDK_GET_PSIZE(ddk);
373
374 bzero(dds, sizeof (*dds));
375
376 for (int p = 0; p < DDT_PHYS_TYPES; p++, ddp++) {
377 uint64_t dsize = 0;
378 uint64_t refcnt = ddp->ddp_refcnt;
379
380 if (ddp->ddp_phys_birth == 0)
381 continue;
382
383 for (int d = 0; d < SPA_DVAS_PER_BP; d++)
384 dsize += dva_get_dsize_sync(spa, &ddp->ddp_dva[d]);
385
386 dds->dds_blocks += 1;
387 dds->dds_lsize += lsize;
388 dds->dds_psize += psize;
389 dds->dds_dsize += dsize;
390
391 dds->dds_ref_blocks += refcnt;
392 dds->dds_ref_lsize += lsize * refcnt;
393 dds->dds_ref_psize += psize * refcnt;
394 dds->dds_ref_dsize += dsize * refcnt;
395 }
396 }
397
398 void
ddt_stat_add(ddt_stat_t * dst,const ddt_stat_t * src,uint64_t neg)399 ddt_stat_add(ddt_stat_t *dst, const ddt_stat_t *src, uint64_t neg)
400 {
401 const uint64_t *s = (const uint64_t *)src;
402 uint64_t *d = (uint64_t *)dst;
403 uint64_t *d_end = (uint64_t *)(dst + 1);
404
405 ASSERT(neg == 0 || neg == -1ULL); /* add or subtract */
406
407 while (d < d_end)
408 *d++ += (*s++ ^ neg) - neg;
409 }
410
411 static void
ddt_stat_update(ddt_t * ddt,ddt_entry_t * dde,uint64_t neg)412 ddt_stat_update(ddt_t *ddt, ddt_entry_t *dde, uint64_t neg)
413 {
414 ddt_stat_t dds;
415 ddt_histogram_t *ddh;
416 int bucket;
417
418 ddt_stat_generate(ddt, dde, &dds);
419
420 bucket = highbit64(dds.dds_ref_blocks) - 1;
421 ASSERT(bucket >= 0);
422
423 ddh = &ddt->ddt_histogram[dde->dde_type][dde->dde_class];
424
425 ddt_stat_add(&ddh->ddh_stat[bucket], &dds, neg);
426 }
427
428 void
ddt_histogram_add(ddt_histogram_t * dst,const ddt_histogram_t * src)429 ddt_histogram_add(ddt_histogram_t *dst, const ddt_histogram_t *src)
430 {
431 for (int h = 0; h < 64; h++)
432 ddt_stat_add(&dst->ddh_stat[h], &src->ddh_stat[h], 0);
433 }
434
435 void
ddt_histogram_stat(ddt_stat_t * dds,const ddt_histogram_t * ddh)436 ddt_histogram_stat(ddt_stat_t *dds, const ddt_histogram_t *ddh)
437 {
438 bzero(dds, sizeof (*dds));
439
440 for (int h = 0; h < 64; h++)
441 ddt_stat_add(dds, &ddh->ddh_stat[h], 0);
442 }
443
444 boolean_t
ddt_histogram_empty(const ddt_histogram_t * ddh)445 ddt_histogram_empty(const ddt_histogram_t *ddh)
446 {
447 const uint64_t *s = (const uint64_t *)ddh;
448 const uint64_t *s_end = (const uint64_t *)(ddh + 1);
449
450 while (s < s_end)
451 if (*s++ != 0)
452 return (B_FALSE);
453
454 return (B_TRUE);
455 }
456
457 void
ddt_get_dedup_object_stats(spa_t * spa,ddt_object_t * ddo_total)458 ddt_get_dedup_object_stats(spa_t *spa, ddt_object_t *ddo_total)
459 {
460 /* Sum the statistics we cached in ddt_object_sync(). */
461 for (enum zio_checksum c = 0; c < ZIO_CHECKSUM_FUNCTIONS; c++) {
462 ddt_t *ddt = spa->spa_ddt[c];
463 for (enum ddt_type type = 0; type < DDT_TYPES; type++) {
464 for (enum ddt_class class = 0; class < DDT_CLASSES;
465 class++) {
466 ddt_object_t *ddo =
467 &ddt->ddt_object_stats[type][class];
468 ddo_total->ddo_count += ddo->ddo_count;
469 ddo_total->ddo_dspace += ddo->ddo_dspace;
470 ddo_total->ddo_mspace += ddo->ddo_mspace;
471 }
472 }
473 }
474
475 /* ... and compute the averages. */
476 if (ddo_total->ddo_count != 0) {
477 ddo_total->ddo_dspace /= ddo_total->ddo_count;
478 ddo_total->ddo_mspace /= ddo_total->ddo_count;
479 }
480 }
481
482 void
ddt_get_dedup_histogram(spa_t * spa,ddt_histogram_t * ddh)483 ddt_get_dedup_histogram(spa_t *spa, ddt_histogram_t *ddh)
484 {
485 for (enum zio_checksum c = 0; c < ZIO_CHECKSUM_FUNCTIONS; c++) {
486 ddt_t *ddt = spa->spa_ddt[c];
487 for (enum ddt_type type = 0; type < DDT_TYPES; type++) {
488 for (enum ddt_class class = 0; class < DDT_CLASSES;
489 class++) {
490 ddt_histogram_add(ddh,
491 &ddt->ddt_histogram_cache[type][class]);
492 }
493 }
494 }
495 }
496
497 void
ddt_get_dedup_stats(spa_t * spa,ddt_stat_t * dds_total)498 ddt_get_dedup_stats(spa_t *spa, ddt_stat_t *dds_total)
499 {
500 ddt_histogram_t *ddh_total;
501
502 ddh_total = kmem_zalloc(sizeof (ddt_histogram_t), KM_SLEEP);
503 ddt_get_dedup_histogram(spa, ddh_total);
504 ddt_histogram_stat(dds_total, ddh_total);
505 kmem_free(ddh_total, sizeof (ddt_histogram_t));
506 }
507
508 uint64_t
ddt_get_dedup_dspace(spa_t * spa)509 ddt_get_dedup_dspace(spa_t *spa)
510 {
511 ddt_stat_t dds_total = { 0 };
512
513 ddt_get_dedup_stats(spa, &dds_total);
514 return (dds_total.dds_ref_dsize - dds_total.dds_dsize);
515 }
516
517 uint64_t
ddt_get_pool_dedup_ratio(spa_t * spa)518 ddt_get_pool_dedup_ratio(spa_t *spa)
519 {
520 ddt_stat_t dds_total = { 0 };
521
522 ddt_get_dedup_stats(spa, &dds_total);
523 if (dds_total.dds_dsize == 0)
524 return (100);
525
526 return (dds_total.dds_ref_dsize * 100 / dds_total.dds_dsize);
527 }
528
529 int
ddt_ditto_copies_needed(ddt_t * ddt,ddt_entry_t * dde,ddt_phys_t * ddp_willref)530 ddt_ditto_copies_needed(ddt_t *ddt, ddt_entry_t *dde, ddt_phys_t *ddp_willref)
531 {
532 spa_t *spa = ddt->ddt_spa;
533 uint64_t total_refcnt = 0;
534 uint64_t ditto = spa->spa_dedup_ditto;
535 int total_copies = 0;
536 int desired_copies = 0;
537
538 for (int p = DDT_PHYS_SINGLE; p <= DDT_PHYS_TRIPLE; p++) {
539 ddt_phys_t *ddp = &dde->dde_phys[p];
540 zio_t *zio = dde->dde_lead_zio[p];
541 uint64_t refcnt = ddp->ddp_refcnt; /* committed refs */
542 if (zio != NULL)
543 refcnt += zio->io_parent_count; /* pending refs */
544 if (ddp == ddp_willref)
545 refcnt++; /* caller's ref */
546 if (refcnt != 0) {
547 total_refcnt += refcnt;
548 total_copies += p;
549 }
550 }
551
552 if (ditto == 0 || ditto > UINT32_MAX)
553 ditto = UINT32_MAX;
554
555 if (total_refcnt >= 1)
556 desired_copies++;
557 if (total_refcnt >= ditto)
558 desired_copies++;
559 if (total_refcnt >= ditto * ditto)
560 desired_copies++;
561
562 return (MAX(desired_copies, total_copies) - total_copies);
563 }
564
565 int
ddt_ditto_copies_present(ddt_entry_t * dde)566 ddt_ditto_copies_present(ddt_entry_t *dde)
567 {
568 ddt_phys_t *ddp = &dde->dde_phys[DDT_PHYS_DITTO];
569 dva_t *dva = ddp->ddp_dva;
570 int copies = 0 - DVA_GET_GANG(dva);
571
572 for (int d = 0; d < SPA_DVAS_PER_BP; d++, dva++)
573 if (DVA_IS_VALID(dva))
574 copies++;
575
576 ASSERT(copies >= 0 && copies < SPA_DVAS_PER_BP);
577
578 return (copies);
579 }
580
581 size_t
ddt_compress(void * src,uchar_t * dst,size_t s_len,size_t d_len)582 ddt_compress(void *src, uchar_t *dst, size_t s_len, size_t d_len)
583 {
584 uchar_t *version = dst++;
585 int cpfunc = ZIO_COMPRESS_ZLE;
586 zio_compress_info_t *ci = &zio_compress_table[cpfunc];
587 size_t c_len;
588
589 ASSERT(d_len >= s_len + 1); /* no compression plus version byte */
590
591 c_len = ci->ci_compress(src, dst, s_len, d_len - 1, ci->ci_level);
592
593 if (c_len == s_len) {
594 cpfunc = ZIO_COMPRESS_OFF;
595 bcopy(src, dst, s_len);
596 }
597
598 *version = cpfunc;
599 /* CONSTCOND */
600 if (ZFS_HOST_BYTEORDER)
601 *version |= DDT_COMPRESS_BYTEORDER_MASK;
602
603 return (c_len + 1);
604 }
605
606 void
ddt_decompress(uchar_t * src,void * dst,size_t s_len,size_t d_len)607 ddt_decompress(uchar_t *src, void *dst, size_t s_len, size_t d_len)
608 {
609 uchar_t version = *src++;
610 int cpfunc = version & DDT_COMPRESS_FUNCTION_MASK;
611 zio_compress_info_t *ci = &zio_compress_table[cpfunc];
612
613 if (ci->ci_decompress != NULL)
614 (void) ci->ci_decompress(src, dst, s_len, d_len, ci->ci_level);
615 else
616 bcopy(src, dst, d_len);
617
618 if (((version & DDT_COMPRESS_BYTEORDER_MASK) != 0) !=
619 (ZFS_HOST_BYTEORDER != 0))
620 byteswap_uint64_array(dst, d_len);
621 }
622
623 ddt_t *
ddt_select_by_checksum(spa_t * spa,enum zio_checksum c)624 ddt_select_by_checksum(spa_t *spa, enum zio_checksum c)
625 {
626 return (spa->spa_ddt[c]);
627 }
628
629 ddt_t *
ddt_select(spa_t * spa,const blkptr_t * bp)630 ddt_select(spa_t *spa, const blkptr_t *bp)
631 {
632 return (spa->spa_ddt[BP_GET_CHECKSUM(bp)]);
633 }
634
635 void
ddt_enter(ddt_t * ddt)636 ddt_enter(ddt_t *ddt)
637 {
638 mutex_enter(&ddt->ddt_lock);
639 }
640
641 void
ddt_exit(ddt_t * ddt)642 ddt_exit(ddt_t *ddt)
643 {
644 mutex_exit(&ddt->ddt_lock);
645 }
646
647 static ddt_entry_t *
ddt_alloc(const ddt_key_t * ddk)648 ddt_alloc(const ddt_key_t *ddk)
649 {
650 ddt_entry_t *dde;
651
652 dde = kmem_zalloc(sizeof (ddt_entry_t), KM_SLEEP);
653 cv_init(&dde->dde_cv, NULL, CV_DEFAULT, NULL);
654
655 dde->dde_key = *ddk;
656
657 return (dde);
658 }
659
660 static void
ddt_free(ddt_entry_t * dde)661 ddt_free(ddt_entry_t *dde)
662 {
663 ASSERT(!dde->dde_loading);
664
665 for (int p = 0; p < DDT_PHYS_TYPES; p++)
666 ASSERT(dde->dde_lead_zio[p] == NULL);
667
668 if (dde->dde_repair_abd != NULL)
669 abd_free(dde->dde_repair_abd);
670
671 cv_destroy(&dde->dde_cv);
672 kmem_free(dde, sizeof (*dde));
673 }
674
675 void
ddt_remove(ddt_t * ddt,ddt_entry_t * dde)676 ddt_remove(ddt_t *ddt, ddt_entry_t *dde)
677 {
678 ASSERT(MUTEX_HELD(&ddt->ddt_lock));
679
680 avl_remove(&ddt->ddt_tree, dde);
681 ddt_free(dde);
682 }
683
684 ddt_entry_t *
ddt_lookup(ddt_t * ddt,const blkptr_t * bp,boolean_t add)685 ddt_lookup(ddt_t *ddt, const blkptr_t *bp, boolean_t add)
686 {
687 ddt_entry_t *dde, dde_search;
688 enum ddt_type type;
689 enum ddt_class class;
690 avl_index_t where;
691 int error;
692
693 ASSERT(MUTEX_HELD(&ddt->ddt_lock));
694
695 ddt_key_fill(&dde_search.dde_key, bp);
696
697 dde = avl_find(&ddt->ddt_tree, &dde_search, &where);
698 if (dde == NULL) {
699 if (!add)
700 return (NULL);
701 dde = ddt_alloc(&dde_search.dde_key);
702 avl_insert(&ddt->ddt_tree, dde, where);
703 }
704
705 while (dde->dde_loading)
706 cv_wait(&dde->dde_cv, &ddt->ddt_lock);
707
708 if (dde->dde_loaded)
709 return (dde);
710
711 dde->dde_loading = B_TRUE;
712
713 ddt_exit(ddt);
714
715 error = ENOENT;
716
717 for (type = 0; type < DDT_TYPES; type++) {
718 for (class = 0; class < DDT_CLASSES; class++) {
719 error = ddt_object_lookup(ddt, type, class, dde);
720 if (error != ENOENT) {
721 ASSERT0(error);
722 break;
723 }
724 }
725 if (error != ENOENT)
726 break;
727 }
728
729 ddt_enter(ddt);
730
731 ASSERT(dde->dde_loaded == B_FALSE);
732 ASSERT(dde->dde_loading == B_TRUE);
733
734 dde->dde_type = type; /* will be DDT_TYPES if no entry found */
735 dde->dde_class = class; /* will be DDT_CLASSES if no entry found */
736 dde->dde_loaded = B_TRUE;
737 dde->dde_loading = B_FALSE;
738
739 if (error == 0)
740 ddt_stat_update(ddt, dde, -1ULL);
741
742 cv_broadcast(&dde->dde_cv);
743
744 return (dde);
745 }
746
747 void
ddt_prefetch(spa_t * spa,const blkptr_t * bp)748 ddt_prefetch(spa_t *spa, const blkptr_t *bp)
749 {
750 ddt_t *ddt;
751 ddt_entry_t dde;
752
753 if (!zfs_dedup_prefetch || bp == NULL || !BP_GET_DEDUP(bp))
754 return;
755
756 /*
757 * We only remove the DDT once all tables are empty and only
758 * prefetch dedup blocks when there are entries in the DDT.
759 * Thus no locking is required as the DDT can't disappear on us.
760 */
761 ddt = ddt_select(spa, bp);
762 ddt_key_fill(&dde.dde_key, bp);
763
764 for (enum ddt_type type = 0; type < DDT_TYPES; type++) {
765 for (enum ddt_class class = 0; class < DDT_CLASSES; class++) {
766 ddt_object_prefetch(ddt, type, class, &dde);
767 }
768 }
769 }
770
771 int
ddt_entry_compare(const void * x1,const void * x2)772 ddt_entry_compare(const void *x1, const void *x2)
773 {
774 const ddt_entry_t *dde1 = x1;
775 const ddt_entry_t *dde2 = x2;
776 const uint64_t *u1 = (const uint64_t *)&dde1->dde_key;
777 const uint64_t *u2 = (const uint64_t *)&dde2->dde_key;
778
779 for (int i = 0; i < DDT_KEY_WORDS; i++) {
780 if (u1[i] < u2[i])
781 return (-1);
782 if (u1[i] > u2[i])
783 return (1);
784 }
785
786 return (0);
787 }
788
789 static ddt_t *
ddt_table_alloc(spa_t * spa,enum zio_checksum c)790 ddt_table_alloc(spa_t *spa, enum zio_checksum c)
791 {
792 ddt_t *ddt;
793
794 ddt = kmem_zalloc(sizeof (*ddt), KM_SLEEP);
795
796 mutex_init(&ddt->ddt_lock, NULL, MUTEX_DEFAULT, NULL);
797 avl_create(&ddt->ddt_tree, ddt_entry_compare,
798 sizeof (ddt_entry_t), offsetof(ddt_entry_t, dde_node));
799 avl_create(&ddt->ddt_repair_tree, ddt_entry_compare,
800 sizeof (ddt_entry_t), offsetof(ddt_entry_t, dde_node));
801 ddt->ddt_checksum = c;
802 ddt->ddt_spa = spa;
803 ddt->ddt_os = spa->spa_meta_objset;
804
805 return (ddt);
806 }
807
808 static void
ddt_table_free(ddt_t * ddt)809 ddt_table_free(ddt_t *ddt)
810 {
811 ASSERT(avl_numnodes(&ddt->ddt_tree) == 0);
812 ASSERT(avl_numnodes(&ddt->ddt_repair_tree) == 0);
813 avl_destroy(&ddt->ddt_tree);
814 avl_destroy(&ddt->ddt_repair_tree);
815 mutex_destroy(&ddt->ddt_lock);
816 kmem_free(ddt, sizeof (*ddt));
817 }
818
819 void
ddt_create(spa_t * spa)820 ddt_create(spa_t *spa)
821 {
822 spa->spa_dedup_checksum = ZIO_DEDUPCHECKSUM;
823
824 for (enum zio_checksum c = 0; c < ZIO_CHECKSUM_FUNCTIONS; c++)
825 spa->spa_ddt[c] = ddt_table_alloc(spa, c);
826 }
827
828 int
ddt_load(spa_t * spa)829 ddt_load(spa_t *spa)
830 {
831 int error;
832
833 ddt_create(spa);
834
835 error = zap_lookup(spa->spa_meta_objset, DMU_POOL_DIRECTORY_OBJECT,
836 DMU_POOL_DDT_STATS, sizeof (uint64_t), 1,
837 &spa->spa_ddt_stat_object);
838
839 if (error)
840 return (error == ENOENT ? 0 : error);
841
842 for (enum zio_checksum c = 0; c < ZIO_CHECKSUM_FUNCTIONS; c++) {
843 ddt_t *ddt = spa->spa_ddt[c];
844 for (enum ddt_type type = 0; type < DDT_TYPES; type++) {
845 for (enum ddt_class class = 0; class < DDT_CLASSES;
846 class++) {
847 error = ddt_object_load(ddt, type, class);
848 if (error != 0 && error != ENOENT)
849 return (error);
850 }
851 }
852
853 /*
854 * Seed the cached histograms.
855 */
856 bcopy(ddt->ddt_histogram, &ddt->ddt_histogram_cache,
857 sizeof (ddt->ddt_histogram));
858 }
859
860 return (0);
861 }
862
863 void
ddt_unload(spa_t * spa)864 ddt_unload(spa_t *spa)
865 {
866 for (enum zio_checksum c = 0; c < ZIO_CHECKSUM_FUNCTIONS; c++) {
867 if (spa->spa_ddt[c]) {
868 ddt_table_free(spa->spa_ddt[c]);
869 spa->spa_ddt[c] = NULL;
870 }
871 }
872 }
873
874 boolean_t
ddt_class_contains(spa_t * spa,enum ddt_class max_class,const blkptr_t * bp)875 ddt_class_contains(spa_t *spa, enum ddt_class max_class, const blkptr_t *bp)
876 {
877 ddt_t *ddt;
878 ddt_entry_t dde;
879
880 if (!BP_GET_DEDUP(bp))
881 return (B_FALSE);
882
883 if (max_class == DDT_CLASS_UNIQUE)
884 return (B_TRUE);
885
886 ddt = spa->spa_ddt[BP_GET_CHECKSUM(bp)];
887
888 ddt_key_fill(&dde.dde_key, bp);
889
890 for (enum ddt_type type = 0; type < DDT_TYPES; type++)
891 for (enum ddt_class class = 0; class <= max_class; class++)
892 if (ddt_object_lookup(ddt, type, class, &dde) == 0)
893 return (B_TRUE);
894
895 return (B_FALSE);
896 }
897
898 ddt_entry_t *
ddt_repair_start(ddt_t * ddt,const blkptr_t * bp)899 ddt_repair_start(ddt_t *ddt, const blkptr_t *bp)
900 {
901 ddt_key_t ddk;
902 ddt_entry_t *dde;
903
904 ddt_key_fill(&ddk, bp);
905
906 dde = ddt_alloc(&ddk);
907
908 for (enum ddt_type type = 0; type < DDT_TYPES; type++) {
909 for (enum ddt_class class = 0; class < DDT_CLASSES; class++) {
910 /*
911 * We can only do repair if there are multiple copies
912 * of the block. For anything in the UNIQUE class,
913 * there's definitely only one copy, so don't even try.
914 */
915 if (class != DDT_CLASS_UNIQUE &&
916 ddt_object_lookup(ddt, type, class, dde) == 0)
917 return (dde);
918 }
919 }
920
921 bzero(dde->dde_phys, sizeof (dde->dde_phys));
922
923 return (dde);
924 }
925
926 void
ddt_repair_done(ddt_t * ddt,ddt_entry_t * dde)927 ddt_repair_done(ddt_t *ddt, ddt_entry_t *dde)
928 {
929 avl_index_t where;
930
931 ddt_enter(ddt);
932
933 if (dde->dde_repair_abd != NULL && spa_writeable(ddt->ddt_spa) &&
934 avl_find(&ddt->ddt_repair_tree, dde, &where) == NULL)
935 avl_insert(&ddt->ddt_repair_tree, dde, where);
936 else
937 ddt_free(dde);
938
939 ddt_exit(ddt);
940 }
941
942 static void
ddt_repair_entry_done(zio_t * zio)943 ddt_repair_entry_done(zio_t *zio)
944 {
945 ddt_entry_t *rdde = zio->io_private;
946
947 ddt_free(rdde);
948 }
949
950 static void
ddt_repair_entry(ddt_t * ddt,ddt_entry_t * dde,ddt_entry_t * rdde,zio_t * rio)951 ddt_repair_entry(ddt_t *ddt, ddt_entry_t *dde, ddt_entry_t *rdde, zio_t *rio)
952 {
953 ddt_phys_t *ddp = dde->dde_phys;
954 ddt_phys_t *rddp = rdde->dde_phys;
955 ddt_key_t *ddk = &dde->dde_key;
956 ddt_key_t *rddk = &rdde->dde_key;
957 zio_t *zio;
958 blkptr_t blk;
959
960 zio = zio_null(rio, rio->io_spa, NULL,
961 ddt_repair_entry_done, rdde, rio->io_flags);
962
963 for (int p = 0; p < DDT_PHYS_TYPES; p++, ddp++, rddp++) {
964 if (ddp->ddp_phys_birth == 0 ||
965 ddp->ddp_phys_birth != rddp->ddp_phys_birth ||
966 bcmp(ddp->ddp_dva, rddp->ddp_dva, sizeof (ddp->ddp_dva)))
967 continue;
968 ddt_bp_create(ddt->ddt_checksum, ddk, ddp, &blk);
969 zio_nowait(zio_rewrite(zio, zio->io_spa, 0, &blk,
970 rdde->dde_repair_abd, DDK_GET_PSIZE(rddk), NULL, NULL,
971 ZIO_PRIORITY_SYNC_WRITE, ZIO_DDT_CHILD_FLAGS(zio), NULL));
972 }
973
974 zio_nowait(zio);
975 }
976
977 static void
ddt_repair_table(ddt_t * ddt,zio_t * rio)978 ddt_repair_table(ddt_t *ddt, zio_t *rio)
979 {
980 spa_t *spa = ddt->ddt_spa;
981 ddt_entry_t *dde, *rdde_next, *rdde;
982 avl_tree_t *t = &ddt->ddt_repair_tree;
983 blkptr_t blk;
984
985 if (spa_sync_pass(spa) > 1)
986 return;
987
988 ddt_enter(ddt);
989 for (rdde = avl_first(t); rdde != NULL; rdde = rdde_next) {
990 rdde_next = AVL_NEXT(t, rdde);
991 avl_remove(&ddt->ddt_repair_tree, rdde);
992 ddt_exit(ddt);
993 ddt_bp_create(ddt->ddt_checksum, &rdde->dde_key, NULL, &blk);
994 dde = ddt_repair_start(ddt, &blk);
995 ddt_repair_entry(ddt, dde, rdde, rio);
996 ddt_repair_done(ddt, dde);
997 ddt_enter(ddt);
998 }
999 ddt_exit(ddt);
1000 }
1001
1002 static void
ddt_sync_entry(ddt_t * ddt,ddt_entry_t * dde,dmu_tx_t * tx,uint64_t txg)1003 ddt_sync_entry(ddt_t *ddt, ddt_entry_t *dde, dmu_tx_t *tx, uint64_t txg)
1004 {
1005 dsl_pool_t *dp = ddt->ddt_spa->spa_dsl_pool;
1006 ddt_phys_t *ddp = dde->dde_phys;
1007 ddt_key_t *ddk = &dde->dde_key;
1008 enum ddt_type otype = dde->dde_type;
1009 enum ddt_type ntype = DDT_TYPE_CURRENT;
1010 enum ddt_class oclass = dde->dde_class;
1011 enum ddt_class nclass;
1012 uint64_t total_refcnt = 0;
1013
1014 ASSERT(dde->dde_loaded);
1015 ASSERT(!dde->dde_loading);
1016
1017 for (int p = 0; p < DDT_PHYS_TYPES; p++, ddp++) {
1018 ASSERT(dde->dde_lead_zio[p] == NULL);
1019 ASSERT((int64_t)ddp->ddp_refcnt >= 0);
1020 if (ddp->ddp_phys_birth == 0) {
1021 ASSERT(ddp->ddp_refcnt == 0);
1022 continue;
1023 }
1024 if (p == DDT_PHYS_DITTO) {
1025 if (ddt_ditto_copies_needed(ddt, dde, NULL) == 0)
1026 ddt_phys_free(ddt, ddk, ddp, txg);
1027 continue;
1028 }
1029 if (ddp->ddp_refcnt == 0)
1030 ddt_phys_free(ddt, ddk, ddp, txg);
1031 total_refcnt += ddp->ddp_refcnt;
1032 }
1033
1034 if (dde->dde_phys[DDT_PHYS_DITTO].ddp_phys_birth != 0)
1035 nclass = DDT_CLASS_DITTO;
1036 else if (total_refcnt > 1)
1037 nclass = DDT_CLASS_DUPLICATE;
1038 else
1039 nclass = DDT_CLASS_UNIQUE;
1040
1041 if (otype != DDT_TYPES &&
1042 (otype != ntype || oclass != nclass || total_refcnt == 0)) {
1043 VERIFY(ddt_object_remove(ddt, otype, oclass, dde, tx) == 0);
1044 ASSERT(ddt_object_lookup(ddt, otype, oclass, dde) == ENOENT);
1045 }
1046
1047 if (total_refcnt != 0) {
1048 dde->dde_type = ntype;
1049 dde->dde_class = nclass;
1050 ddt_stat_update(ddt, dde, 0);
1051 if (!ddt_object_exists(ddt, ntype, nclass))
1052 ddt_object_create(ddt, ntype, nclass, tx);
1053 VERIFY(ddt_object_update(ddt, ntype, nclass, dde, tx) == 0);
1054
1055 /*
1056 * If the class changes, the order that we scan this bp
1057 * changes. If it decreases, we could miss it, so
1058 * scan it right now. (This covers both class changing
1059 * while we are doing ddt_walk(), and when we are
1060 * traversing.)
1061 */
1062 if (nclass < oclass) {
1063 dsl_scan_ddt_entry(dp->dp_scan,
1064 ddt->ddt_checksum, dde, tx);
1065 }
1066 }
1067 }
1068
1069 static void
ddt_sync_table(ddt_t * ddt,dmu_tx_t * tx,uint64_t txg)1070 ddt_sync_table(ddt_t *ddt, dmu_tx_t *tx, uint64_t txg)
1071 {
1072 spa_t *spa = ddt->ddt_spa;
1073 ddt_entry_t *dde;
1074 void *cookie = NULL;
1075
1076 if (avl_numnodes(&ddt->ddt_tree) == 0)
1077 return;
1078
1079 ASSERT(spa->spa_uberblock.ub_version >= SPA_VERSION_DEDUP);
1080
1081 if (spa->spa_ddt_stat_object == 0) {
1082 spa->spa_ddt_stat_object = zap_create_link(ddt->ddt_os,
1083 DMU_OT_DDT_STATS, DMU_POOL_DIRECTORY_OBJECT,
1084 DMU_POOL_DDT_STATS, tx);
1085 }
1086
1087 while ((dde = avl_destroy_nodes(&ddt->ddt_tree, &cookie)) != NULL) {
1088 ddt_sync_entry(ddt, dde, tx, txg);
1089 ddt_free(dde);
1090 }
1091
1092 for (enum ddt_type type = 0; type < DDT_TYPES; type++) {
1093 uint64_t add, count = 0;
1094 for (enum ddt_class class = 0; class < DDT_CLASSES; class++) {
1095 if (ddt_object_exists(ddt, type, class)) {
1096 ddt_object_sync(ddt, type, class, tx);
1097 VERIFY(ddt_object_count(ddt, type, class,
1098 &add) == 0);
1099 count += add;
1100 }
1101 }
1102 for (enum ddt_class class = 0; class < DDT_CLASSES; class++) {
1103 if (count == 0 && ddt_object_exists(ddt, type, class))
1104 ddt_object_destroy(ddt, type, class, tx);
1105 }
1106 }
1107
1108 bcopy(ddt->ddt_histogram, &ddt->ddt_histogram_cache,
1109 sizeof (ddt->ddt_histogram));
1110 }
1111
1112 void
ddt_sync(spa_t * spa,uint64_t txg)1113 ddt_sync(spa_t *spa, uint64_t txg)
1114 {
1115 dsl_scan_t *scn = spa->spa_dsl_pool->dp_scan;
1116 dmu_tx_t *tx;
1117 zio_t *rio;
1118
1119 ASSERT(spa_syncing_txg(spa) == txg);
1120
1121 tx = dmu_tx_create_assigned(spa->spa_dsl_pool, txg);
1122
1123 rio = zio_root(spa, NULL, NULL,
1124 ZIO_FLAG_CANFAIL | ZIO_FLAG_SPECULATIVE | ZIO_FLAG_SELF_HEAL);
1125
1126 /*
1127 * This function may cause an immediate scan of ddt blocks (see
1128 * the comment above dsl_scan_ddt() for details). We set the
1129 * scan's root zio here so that we can wait for any scan IOs in
1130 * addition to the regular ddt IOs.
1131 */
1132 ASSERT3P(scn->scn_zio_root, ==, NULL);
1133 scn->scn_zio_root = rio;
1134
1135 for (enum zio_checksum c = 0; c < ZIO_CHECKSUM_FUNCTIONS; c++) {
1136 ddt_t *ddt = spa->spa_ddt[c];
1137 if (ddt == NULL)
1138 continue;
1139 ddt_sync_table(ddt, tx, txg);
1140 ddt_repair_table(ddt, rio);
1141 }
1142
1143 (void) zio_wait(rio);
1144 scn->scn_zio_root = NULL;
1145
1146 dmu_tx_commit(tx);
1147 }
1148
1149 int
ddt_walk(spa_t * spa,ddt_bookmark_t * ddb,ddt_entry_t * dde)1150 ddt_walk(spa_t *spa, ddt_bookmark_t *ddb, ddt_entry_t *dde)
1151 {
1152 do {
1153 do {
1154 do {
1155 ddt_t *ddt = spa->spa_ddt[ddb->ddb_checksum];
1156 int error = ENOENT;
1157 if (ddt_object_exists(ddt, ddb->ddb_type,
1158 ddb->ddb_class)) {
1159 error = ddt_object_walk(ddt,
1160 ddb->ddb_type, ddb->ddb_class,
1161 &ddb->ddb_cursor, dde);
1162 }
1163 dde->dde_type = ddb->ddb_type;
1164 dde->dde_class = ddb->ddb_class;
1165 if (error == 0)
1166 return (0);
1167 if (error != ENOENT)
1168 return (error);
1169 ddb->ddb_cursor = 0;
1170 } while (++ddb->ddb_checksum < ZIO_CHECKSUM_FUNCTIONS);
1171 ddb->ddb_checksum = 0;
1172 } while (++ddb->ddb_type < DDT_TYPES);
1173 ddb->ddb_type = 0;
1174 } while (++ddb->ddb_class < DDT_CLASSES);
1175
1176 return (SET_ERROR(ENOENT));
1177 }
1178