]> git.proxmox.com Git - mirror_zfs.git/blob - module/zfs/zio.c
b5627109900c1372629f959c1481feebd0b91ce0
[mirror_zfs.git] / module / zfs / zio.c
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 https://opensource.org/licenses/CDDL-1.0.
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 * Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
23 * Copyright (c) 2011, 2022 by Delphix. All rights reserved.
24 * Copyright (c) 2011 Nexenta Systems, Inc. All rights reserved.
25 * Copyright (c) 2017, Intel Corporation.
26 * Copyright (c) 2019, Klara Inc.
27 * Copyright (c) 2019, Allan Jude
28 * Copyright (c) 2021, Datto, Inc.
29 */
30
31 #include <sys/sysmacros.h>
32 #include <sys/zfs_context.h>
33 #include <sys/fm/fs/zfs.h>
34 #include <sys/spa.h>
35 #include <sys/txg.h>
36 #include <sys/spa_impl.h>
37 #include <sys/vdev_impl.h>
38 #include <sys/vdev_trim.h>
39 #include <sys/zio_impl.h>
40 #include <sys/zio_compress.h>
41 #include <sys/zio_checksum.h>
42 #include <sys/dmu_objset.h>
43 #include <sys/arc.h>
44 #include <sys/brt.h>
45 #include <sys/ddt.h>
46 #include <sys/blkptr.h>
47 #include <sys/zfeature.h>
48 #include <sys/dsl_scan.h>
49 #include <sys/metaslab_impl.h>
50 #include <sys/time.h>
51 #include <sys/trace_zfs.h>
52 #include <sys/abd.h>
53 #include <sys/dsl_crypt.h>
54 #include <cityhash.h>
55
56 /*
57 * ==========================================================================
58 * I/O type descriptions
59 * ==========================================================================
60 */
61 const char *const zio_type_name[ZIO_TYPES] = {
62 /*
63 * Note: Linux kernel thread name length is limited
64 * so these names will differ from upstream open zfs.
65 */
66 "z_null", "z_rd", "z_wr", "z_fr", "z_cl", "z_ioctl", "z_trim"
67 };
68
69 int zio_dva_throttle_enabled = B_TRUE;
70 static int zio_deadman_log_all = B_FALSE;
71
72 /*
73 * ==========================================================================
74 * I/O kmem caches
75 * ==========================================================================
76 */
77 static kmem_cache_t *zio_cache;
78 static kmem_cache_t *zio_link_cache;
79 kmem_cache_t *zio_buf_cache[SPA_MAXBLOCKSIZE >> SPA_MINBLOCKSHIFT];
80 kmem_cache_t *zio_data_buf_cache[SPA_MAXBLOCKSIZE >> SPA_MINBLOCKSHIFT];
81 #if defined(ZFS_DEBUG) && !defined(_KERNEL)
82 static uint64_t zio_buf_cache_allocs[SPA_MAXBLOCKSIZE >> SPA_MINBLOCKSHIFT];
83 static uint64_t zio_buf_cache_frees[SPA_MAXBLOCKSIZE >> SPA_MINBLOCKSHIFT];
84 #endif
85
86 /* Mark IOs as "slow" if they take longer than 30 seconds */
87 static uint_t zio_slow_io_ms = (30 * MILLISEC);
88
89 #define BP_SPANB(indblkshift, level) \
90 (((uint64_t)1) << ((level) * ((indblkshift) - SPA_BLKPTRSHIFT)))
91 #define COMPARE_META_LEVEL 0x80000000ul
92 /*
93 * The following actions directly effect the spa's sync-to-convergence logic.
94 * The values below define the sync pass when we start performing the action.
95 * Care should be taken when changing these values as they directly impact
96 * spa_sync() performance. Tuning these values may introduce subtle performance
97 * pathologies and should only be done in the context of performance analysis.
98 * These tunables will eventually be removed and replaced with #defines once
99 * enough analysis has been done to determine optimal values.
100 *
101 * The 'zfs_sync_pass_deferred_free' pass must be greater than 1 to ensure that
102 * regular blocks are not deferred.
103 *
104 * Starting in sync pass 8 (zfs_sync_pass_dont_compress), we disable
105 * compression (including of metadata). In practice, we don't have this
106 * many sync passes, so this has no effect.
107 *
108 * The original intent was that disabling compression would help the sync
109 * passes to converge. However, in practice disabling compression increases
110 * the average number of sync passes, because when we turn compression off, a
111 * lot of block's size will change and thus we have to re-allocate (not
112 * overwrite) them. It also increases the number of 128KB allocations (e.g.
113 * for indirect blocks and spacemaps) because these will not be compressed.
114 * The 128K allocations are especially detrimental to performance on highly
115 * fragmented systems, which may have very few free segments of this size,
116 * and may need to load new metaslabs to satisfy 128K allocations.
117 */
118
119 /* defer frees starting in this pass */
120 uint_t zfs_sync_pass_deferred_free = 2;
121
122 /* don't compress starting in this pass */
123 static uint_t zfs_sync_pass_dont_compress = 8;
124
125 /* rewrite new bps starting in this pass */
126 static uint_t zfs_sync_pass_rewrite = 2;
127
128 /*
129 * An allocating zio is one that either currently has the DVA allocate
130 * stage set or will have it later in its lifetime.
131 */
132 #define IO_IS_ALLOCATING(zio) ((zio)->io_orig_pipeline & ZIO_STAGE_DVA_ALLOCATE)
133
134 /*
135 * Enable smaller cores by excluding metadata
136 * allocations as well.
137 */
138 int zio_exclude_metadata = 0;
139 static int zio_requeue_io_start_cut_in_line = 1;
140
141 #ifdef ZFS_DEBUG
142 static const int zio_buf_debug_limit = 16384;
143 #else
144 static const int zio_buf_debug_limit = 0;
145 #endif
146
147 static inline void __zio_execute(zio_t *zio);
148
149 static void zio_taskq_dispatch(zio_t *, zio_taskq_type_t, boolean_t);
150
151 void
152 zio_init(void)
153 {
154 size_t c;
155
156 zio_cache = kmem_cache_create("zio_cache",
157 sizeof (zio_t), 0, NULL, NULL, NULL, NULL, NULL, 0);
158 zio_link_cache = kmem_cache_create("zio_link_cache",
159 sizeof (zio_link_t), 0, NULL, NULL, NULL, NULL, NULL, 0);
160
161 /*
162 * For small buffers, we want a cache for each multiple of
163 * SPA_MINBLOCKSIZE. For larger buffers, we want a cache
164 * for each quarter-power of 2.
165 */
166 for (c = 0; c < SPA_MAXBLOCKSIZE >> SPA_MINBLOCKSHIFT; c++) {
167 size_t size = (c + 1) << SPA_MINBLOCKSHIFT;
168 size_t p2 = size;
169 size_t align = 0;
170 size_t data_cflags, cflags;
171
172 data_cflags = KMC_NODEBUG;
173 cflags = (zio_exclude_metadata || size > zio_buf_debug_limit) ?
174 KMC_NODEBUG : 0;
175
176 while (!ISP2(p2))
177 p2 &= p2 - 1;
178
179 #ifndef _KERNEL
180 /*
181 * If we are using watchpoints, put each buffer on its own page,
182 * to eliminate the performance overhead of trapping to the
183 * kernel when modifying a non-watched buffer that shares the
184 * page with a watched buffer.
185 */
186 if (arc_watch && !IS_P2ALIGNED(size, PAGESIZE))
187 continue;
188 /*
189 * Here's the problem - on 4K native devices in userland on
190 * Linux using O_DIRECT, buffers must be 4K aligned or I/O
191 * will fail with EINVAL, causing zdb (and others) to coredump.
192 * Since userland probably doesn't need optimized buffer caches,
193 * we just force 4K alignment on everything.
194 */
195 align = 8 * SPA_MINBLOCKSIZE;
196 #else
197 if (size < PAGESIZE) {
198 align = SPA_MINBLOCKSIZE;
199 } else if (IS_P2ALIGNED(size, p2 >> 2)) {
200 align = PAGESIZE;
201 }
202 #endif
203
204 if (align != 0) {
205 char name[36];
206 if (cflags == data_cflags) {
207 /*
208 * Resulting kmem caches would be identical.
209 * Save memory by creating only one.
210 */
211 (void) snprintf(name, sizeof (name),
212 "zio_buf_comb_%lu", (ulong_t)size);
213 zio_buf_cache[c] = kmem_cache_create(name,
214 size, align, NULL, NULL, NULL, NULL, NULL,
215 cflags);
216 zio_data_buf_cache[c] = zio_buf_cache[c];
217 continue;
218 }
219 (void) snprintf(name, sizeof (name), "zio_buf_%lu",
220 (ulong_t)size);
221 zio_buf_cache[c] = kmem_cache_create(name, size,
222 align, NULL, NULL, NULL, NULL, NULL, cflags);
223
224 (void) snprintf(name, sizeof (name), "zio_data_buf_%lu",
225 (ulong_t)size);
226 zio_data_buf_cache[c] = kmem_cache_create(name, size,
227 align, NULL, NULL, NULL, NULL, NULL, data_cflags);
228 }
229 }
230
231 while (--c != 0) {
232 ASSERT(zio_buf_cache[c] != NULL);
233 if (zio_buf_cache[c - 1] == NULL)
234 zio_buf_cache[c - 1] = zio_buf_cache[c];
235
236 ASSERT(zio_data_buf_cache[c] != NULL);
237 if (zio_data_buf_cache[c - 1] == NULL)
238 zio_data_buf_cache[c - 1] = zio_data_buf_cache[c];
239 }
240
241 zio_inject_init();
242
243 lz4_init();
244 }
245
246 void
247 zio_fini(void)
248 {
249 size_t n = SPA_MAXBLOCKSIZE >> SPA_MINBLOCKSHIFT;
250
251 #if defined(ZFS_DEBUG) && !defined(_KERNEL)
252 for (size_t i = 0; i < n; i++) {
253 if (zio_buf_cache_allocs[i] != zio_buf_cache_frees[i])
254 (void) printf("zio_fini: [%d] %llu != %llu\n",
255 (int)((i + 1) << SPA_MINBLOCKSHIFT),
256 (long long unsigned)zio_buf_cache_allocs[i],
257 (long long unsigned)zio_buf_cache_frees[i]);
258 }
259 #endif
260
261 /*
262 * The same kmem cache can show up multiple times in both zio_buf_cache
263 * and zio_data_buf_cache. Do a wasteful but trivially correct scan to
264 * sort it out.
265 */
266 for (size_t i = 0; i < n; i++) {
267 kmem_cache_t *cache = zio_buf_cache[i];
268 if (cache == NULL)
269 continue;
270 for (size_t j = i; j < n; j++) {
271 if (cache == zio_buf_cache[j])
272 zio_buf_cache[j] = NULL;
273 if (cache == zio_data_buf_cache[j])
274 zio_data_buf_cache[j] = NULL;
275 }
276 kmem_cache_destroy(cache);
277 }
278
279 for (size_t i = 0; i < n; i++) {
280 kmem_cache_t *cache = zio_data_buf_cache[i];
281 if (cache == NULL)
282 continue;
283 for (size_t j = i; j < n; j++) {
284 if (cache == zio_data_buf_cache[j])
285 zio_data_buf_cache[j] = NULL;
286 }
287 kmem_cache_destroy(cache);
288 }
289
290 for (size_t i = 0; i < n; i++) {
291 VERIFY3P(zio_buf_cache[i], ==, NULL);
292 VERIFY3P(zio_data_buf_cache[i], ==, NULL);
293 }
294
295 kmem_cache_destroy(zio_link_cache);
296 kmem_cache_destroy(zio_cache);
297
298 zio_inject_fini();
299
300 lz4_fini();
301 }
302
303 /*
304 * ==========================================================================
305 * Allocate and free I/O buffers
306 * ==========================================================================
307 */
308
309 /*
310 * Use zio_buf_alloc to allocate ZFS metadata. This data will appear in a
311 * crashdump if the kernel panics, so use it judiciously. Obviously, it's
312 * useful to inspect ZFS metadata, but if possible, we should avoid keeping
313 * excess / transient data in-core during a crashdump.
314 */
315 void *
316 zio_buf_alloc(size_t size)
317 {
318 size_t c = (size - 1) >> SPA_MINBLOCKSHIFT;
319
320 VERIFY3U(c, <, SPA_MAXBLOCKSIZE >> SPA_MINBLOCKSHIFT);
321 #if defined(ZFS_DEBUG) && !defined(_KERNEL)
322 atomic_add_64(&zio_buf_cache_allocs[c], 1);
323 #endif
324
325 return (kmem_cache_alloc(zio_buf_cache[c], KM_PUSHPAGE));
326 }
327
328 /*
329 * Use zio_data_buf_alloc to allocate data. The data will not appear in a
330 * crashdump if the kernel panics. This exists so that we will limit the amount
331 * of ZFS data that shows up in a kernel crashdump. (Thus reducing the amount
332 * of kernel heap dumped to disk when the kernel panics)
333 */
334 void *
335 zio_data_buf_alloc(size_t size)
336 {
337 size_t c = (size - 1) >> SPA_MINBLOCKSHIFT;
338
339 VERIFY3U(c, <, SPA_MAXBLOCKSIZE >> SPA_MINBLOCKSHIFT);
340
341 return (kmem_cache_alloc(zio_data_buf_cache[c], KM_PUSHPAGE));
342 }
343
344 void
345 zio_buf_free(void *buf, size_t size)
346 {
347 size_t c = (size - 1) >> SPA_MINBLOCKSHIFT;
348
349 VERIFY3U(c, <, SPA_MAXBLOCKSIZE >> SPA_MINBLOCKSHIFT);
350 #if defined(ZFS_DEBUG) && !defined(_KERNEL)
351 atomic_add_64(&zio_buf_cache_frees[c], 1);
352 #endif
353
354 kmem_cache_free(zio_buf_cache[c], buf);
355 }
356
357 void
358 zio_data_buf_free(void *buf, size_t size)
359 {
360 size_t c = (size - 1) >> SPA_MINBLOCKSHIFT;
361
362 VERIFY3U(c, <, SPA_MAXBLOCKSIZE >> SPA_MINBLOCKSHIFT);
363
364 kmem_cache_free(zio_data_buf_cache[c], buf);
365 }
366
367 static void
368 zio_abd_free(void *abd, size_t size)
369 {
370 (void) size;
371 abd_free((abd_t *)abd);
372 }
373
374 /*
375 * ==========================================================================
376 * Push and pop I/O transform buffers
377 * ==========================================================================
378 */
379 void
380 zio_push_transform(zio_t *zio, abd_t *data, uint64_t size, uint64_t bufsize,
381 zio_transform_func_t *transform)
382 {
383 zio_transform_t *zt = kmem_alloc(sizeof (zio_transform_t), KM_SLEEP);
384
385 zt->zt_orig_abd = zio->io_abd;
386 zt->zt_orig_size = zio->io_size;
387 zt->zt_bufsize = bufsize;
388 zt->zt_transform = transform;
389
390 zt->zt_next = zio->io_transform_stack;
391 zio->io_transform_stack = zt;
392
393 zio->io_abd = data;
394 zio->io_size = size;
395 }
396
397 void
398 zio_pop_transforms(zio_t *zio)
399 {
400 zio_transform_t *zt;
401
402 while ((zt = zio->io_transform_stack) != NULL) {
403 if (zt->zt_transform != NULL)
404 zt->zt_transform(zio,
405 zt->zt_orig_abd, zt->zt_orig_size);
406
407 if (zt->zt_bufsize != 0)
408 abd_free(zio->io_abd);
409
410 zio->io_abd = zt->zt_orig_abd;
411 zio->io_size = zt->zt_orig_size;
412 zio->io_transform_stack = zt->zt_next;
413
414 kmem_free(zt, sizeof (zio_transform_t));
415 }
416 }
417
418 /*
419 * ==========================================================================
420 * I/O transform callbacks for subblocks, decompression, and decryption
421 * ==========================================================================
422 */
423 static void
424 zio_subblock(zio_t *zio, abd_t *data, uint64_t size)
425 {
426 ASSERT(zio->io_size > size);
427
428 if (zio->io_type == ZIO_TYPE_READ)
429 abd_copy(data, zio->io_abd, size);
430 }
431
432 static void
433 zio_decompress(zio_t *zio, abd_t *data, uint64_t size)
434 {
435 if (zio->io_error == 0) {
436 void *tmp = abd_borrow_buf(data, size);
437 int ret = zio_decompress_data(BP_GET_COMPRESS(zio->io_bp),
438 zio->io_abd, tmp, zio->io_size, size,
439 &zio->io_prop.zp_complevel);
440 abd_return_buf_copy(data, tmp, size);
441
442 if (zio_injection_enabled && ret == 0)
443 ret = zio_handle_fault_injection(zio, EINVAL);
444
445 if (ret != 0)
446 zio->io_error = SET_ERROR(EIO);
447 }
448 }
449
450 static void
451 zio_decrypt(zio_t *zio, abd_t *data, uint64_t size)
452 {
453 int ret;
454 void *tmp;
455 blkptr_t *bp = zio->io_bp;
456 spa_t *spa = zio->io_spa;
457 uint64_t dsobj = zio->io_bookmark.zb_objset;
458 uint64_t lsize = BP_GET_LSIZE(bp);
459 dmu_object_type_t ot = BP_GET_TYPE(bp);
460 uint8_t salt[ZIO_DATA_SALT_LEN];
461 uint8_t iv[ZIO_DATA_IV_LEN];
462 uint8_t mac[ZIO_DATA_MAC_LEN];
463 boolean_t no_crypt = B_FALSE;
464
465 ASSERT(BP_USES_CRYPT(bp));
466 ASSERT3U(size, !=, 0);
467
468 if (zio->io_error != 0)
469 return;
470
471 /*
472 * Verify the cksum of MACs stored in an indirect bp. It will always
473 * be possible to verify this since it does not require an encryption
474 * key.
475 */
476 if (BP_HAS_INDIRECT_MAC_CKSUM(bp)) {
477 zio_crypt_decode_mac_bp(bp, mac);
478
479 if (BP_GET_COMPRESS(bp) != ZIO_COMPRESS_OFF) {
480 /*
481 * We haven't decompressed the data yet, but
482 * zio_crypt_do_indirect_mac_checksum() requires
483 * decompressed data to be able to parse out the MACs
484 * from the indirect block. We decompress it now and
485 * throw away the result after we are finished.
486 */
487 tmp = zio_buf_alloc(lsize);
488 ret = zio_decompress_data(BP_GET_COMPRESS(bp),
489 zio->io_abd, tmp, zio->io_size, lsize,
490 &zio->io_prop.zp_complevel);
491 if (ret != 0) {
492 ret = SET_ERROR(EIO);
493 goto error;
494 }
495 ret = zio_crypt_do_indirect_mac_checksum(B_FALSE,
496 tmp, lsize, BP_SHOULD_BYTESWAP(bp), mac);
497 zio_buf_free(tmp, lsize);
498 } else {
499 ret = zio_crypt_do_indirect_mac_checksum_abd(B_FALSE,
500 zio->io_abd, size, BP_SHOULD_BYTESWAP(bp), mac);
501 }
502 abd_copy(data, zio->io_abd, size);
503
504 if (zio_injection_enabled && ot != DMU_OT_DNODE && ret == 0) {
505 ret = zio_handle_decrypt_injection(spa,
506 &zio->io_bookmark, ot, ECKSUM);
507 }
508 if (ret != 0)
509 goto error;
510
511 return;
512 }
513
514 /*
515 * If this is an authenticated block, just check the MAC. It would be
516 * nice to separate this out into its own flag, but when this was done,
517 * we had run out of bits in what is now zio_flag_t. Future cleanup
518 * could make this a flag bit.
519 */
520 if (BP_IS_AUTHENTICATED(bp)) {
521 if (ot == DMU_OT_OBJSET) {
522 ret = spa_do_crypt_objset_mac_abd(B_FALSE, spa,
523 dsobj, zio->io_abd, size, BP_SHOULD_BYTESWAP(bp));
524 } else {
525 zio_crypt_decode_mac_bp(bp, mac);
526 ret = spa_do_crypt_mac_abd(B_FALSE, spa, dsobj,
527 zio->io_abd, size, mac);
528 if (zio_injection_enabled && ret == 0) {
529 ret = zio_handle_decrypt_injection(spa,
530 &zio->io_bookmark, ot, ECKSUM);
531 }
532 }
533 abd_copy(data, zio->io_abd, size);
534
535 if (ret != 0)
536 goto error;
537
538 return;
539 }
540
541 zio_crypt_decode_params_bp(bp, salt, iv);
542
543 if (ot == DMU_OT_INTENT_LOG) {
544 tmp = abd_borrow_buf_copy(zio->io_abd, sizeof (zil_chain_t));
545 zio_crypt_decode_mac_zil(tmp, mac);
546 abd_return_buf(zio->io_abd, tmp, sizeof (zil_chain_t));
547 } else {
548 zio_crypt_decode_mac_bp(bp, mac);
549 }
550
551 ret = spa_do_crypt_abd(B_FALSE, spa, &zio->io_bookmark, BP_GET_TYPE(bp),
552 BP_GET_DEDUP(bp), BP_SHOULD_BYTESWAP(bp), salt, iv, mac, size, data,
553 zio->io_abd, &no_crypt);
554 if (no_crypt)
555 abd_copy(data, zio->io_abd, size);
556
557 if (ret != 0)
558 goto error;
559
560 return;
561
562 error:
563 /* assert that the key was found unless this was speculative */
564 ASSERT(ret != EACCES || (zio->io_flags & ZIO_FLAG_SPECULATIVE));
565
566 /*
567 * If there was a decryption / authentication error return EIO as
568 * the io_error. If this was not a speculative zio, create an ereport.
569 */
570 if (ret == ECKSUM) {
571 zio->io_error = SET_ERROR(EIO);
572 if ((zio->io_flags & ZIO_FLAG_SPECULATIVE) == 0) {
573 spa_log_error(spa, &zio->io_bookmark,
574 &zio->io_bp->blk_birth);
575 (void) zfs_ereport_post(FM_EREPORT_ZFS_AUTHENTICATION,
576 spa, NULL, &zio->io_bookmark, zio, 0);
577 }
578 } else {
579 zio->io_error = ret;
580 }
581 }
582
583 /*
584 * ==========================================================================
585 * I/O parent/child relationships and pipeline interlocks
586 * ==========================================================================
587 */
588 zio_t *
589 zio_walk_parents(zio_t *cio, zio_link_t **zl)
590 {
591 list_t *pl = &cio->io_parent_list;
592
593 *zl = (*zl == NULL) ? list_head(pl) : list_next(pl, *zl);
594 if (*zl == NULL)
595 return (NULL);
596
597 ASSERT((*zl)->zl_child == cio);
598 return ((*zl)->zl_parent);
599 }
600
601 zio_t *
602 zio_walk_children(zio_t *pio, zio_link_t **zl)
603 {
604 list_t *cl = &pio->io_child_list;
605
606 ASSERT(MUTEX_HELD(&pio->io_lock));
607
608 *zl = (*zl == NULL) ? list_head(cl) : list_next(cl, *zl);
609 if (*zl == NULL)
610 return (NULL);
611
612 ASSERT((*zl)->zl_parent == pio);
613 return ((*zl)->zl_child);
614 }
615
616 zio_t *
617 zio_unique_parent(zio_t *cio)
618 {
619 zio_link_t *zl = NULL;
620 zio_t *pio = zio_walk_parents(cio, &zl);
621
622 VERIFY3P(zio_walk_parents(cio, &zl), ==, NULL);
623 return (pio);
624 }
625
626 void
627 zio_add_child(zio_t *pio, zio_t *cio)
628 {
629 /*
630 * Logical I/Os can have logical, gang, or vdev children.
631 * Gang I/Os can have gang or vdev children.
632 * Vdev I/Os can only have vdev children.
633 * The following ASSERT captures all of these constraints.
634 */
635 ASSERT3S(cio->io_child_type, <=, pio->io_child_type);
636
637 zio_link_t *zl = kmem_cache_alloc(zio_link_cache, KM_SLEEP);
638 zl->zl_parent = pio;
639 zl->zl_child = cio;
640
641 mutex_enter(&pio->io_lock);
642 mutex_enter(&cio->io_lock);
643
644 ASSERT(pio->io_state[ZIO_WAIT_DONE] == 0);
645
646 uint64_t *countp = pio->io_children[cio->io_child_type];
647 for (int w = 0; w < ZIO_WAIT_TYPES; w++)
648 countp[w] += !cio->io_state[w];
649
650 list_insert_head(&pio->io_child_list, zl);
651 list_insert_head(&cio->io_parent_list, zl);
652
653 mutex_exit(&cio->io_lock);
654 mutex_exit(&pio->io_lock);
655 }
656
657 void
658 zio_add_child_first(zio_t *pio, zio_t *cio)
659 {
660 /*
661 * Logical I/Os can have logical, gang, or vdev children.
662 * Gang I/Os can have gang or vdev children.
663 * Vdev I/Os can only have vdev children.
664 * The following ASSERT captures all of these constraints.
665 */
666 ASSERT3S(cio->io_child_type, <=, pio->io_child_type);
667
668 zio_link_t *zl = kmem_cache_alloc(zio_link_cache, KM_SLEEP);
669 zl->zl_parent = pio;
670 zl->zl_child = cio;
671
672 ASSERT(list_is_empty(&cio->io_parent_list));
673 list_insert_head(&cio->io_parent_list, zl);
674
675 mutex_enter(&pio->io_lock);
676
677 ASSERT(pio->io_state[ZIO_WAIT_DONE] == 0);
678
679 uint64_t *countp = pio->io_children[cio->io_child_type];
680 for (int w = 0; w < ZIO_WAIT_TYPES; w++)
681 countp[w] += !cio->io_state[w];
682
683 list_insert_head(&pio->io_child_list, zl);
684
685 mutex_exit(&pio->io_lock);
686 }
687
688 static void
689 zio_remove_child(zio_t *pio, zio_t *cio, zio_link_t *zl)
690 {
691 ASSERT(zl->zl_parent == pio);
692 ASSERT(zl->zl_child == cio);
693
694 mutex_enter(&pio->io_lock);
695 mutex_enter(&cio->io_lock);
696
697 list_remove(&pio->io_child_list, zl);
698 list_remove(&cio->io_parent_list, zl);
699
700 mutex_exit(&cio->io_lock);
701 mutex_exit(&pio->io_lock);
702 kmem_cache_free(zio_link_cache, zl);
703 }
704
705 static boolean_t
706 zio_wait_for_children(zio_t *zio, uint8_t childbits, enum zio_wait_type wait)
707 {
708 boolean_t waiting = B_FALSE;
709
710 mutex_enter(&zio->io_lock);
711 ASSERT(zio->io_stall == NULL);
712 for (int c = 0; c < ZIO_CHILD_TYPES; c++) {
713 if (!(ZIO_CHILD_BIT_IS_SET(childbits, c)))
714 continue;
715
716 uint64_t *countp = &zio->io_children[c][wait];
717 if (*countp != 0) {
718 zio->io_stage >>= 1;
719 ASSERT3U(zio->io_stage, !=, ZIO_STAGE_OPEN);
720 zio->io_stall = countp;
721 waiting = B_TRUE;
722 break;
723 }
724 }
725 mutex_exit(&zio->io_lock);
726 return (waiting);
727 }
728
729 __attribute__((always_inline))
730 static inline void
731 zio_notify_parent(zio_t *pio, zio_t *zio, enum zio_wait_type wait,
732 zio_t **next_to_executep)
733 {
734 uint64_t *countp = &pio->io_children[zio->io_child_type][wait];
735 int *errorp = &pio->io_child_error[zio->io_child_type];
736
737 mutex_enter(&pio->io_lock);
738 if (zio->io_error && !(zio->io_flags & ZIO_FLAG_DONT_PROPAGATE))
739 *errorp = zio_worst_error(*errorp, zio->io_error);
740 pio->io_reexecute |= zio->io_reexecute;
741 ASSERT3U(*countp, >, 0);
742
743 (*countp)--;
744
745 if (*countp == 0 && pio->io_stall == countp) {
746 zio_taskq_type_t type =
747 pio->io_stage < ZIO_STAGE_VDEV_IO_START ? ZIO_TASKQ_ISSUE :
748 ZIO_TASKQ_INTERRUPT;
749 pio->io_stall = NULL;
750 mutex_exit(&pio->io_lock);
751
752 /*
753 * If we can tell the caller to execute this parent next, do
754 * so. We only do this if the parent's zio type matches the
755 * child's type. Otherwise dispatch the parent zio in its
756 * own taskq.
757 *
758 * Having the caller execute the parent when possible reduces
759 * locking on the zio taskq's, reduces context switch
760 * overhead, and has no recursion penalty. Note that one
761 * read from disk typically causes at least 3 zio's: a
762 * zio_null(), the logical zio_read(), and then a physical
763 * zio. When the physical ZIO completes, we are able to call
764 * zio_done() on all 3 of these zio's from one invocation of
765 * zio_execute() by returning the parent back to
766 * zio_execute(). Since the parent isn't executed until this
767 * thread returns back to zio_execute(), the caller should do
768 * so promptly.
769 *
770 * In other cases, dispatching the parent prevents
771 * overflowing the stack when we have deeply nested
772 * parent-child relationships, as we do with the "mega zio"
773 * of writes for spa_sync(), and the chain of ZIL blocks.
774 */
775 if (next_to_executep != NULL && *next_to_executep == NULL &&
776 pio->io_type == zio->io_type) {
777 *next_to_executep = pio;
778 } else {
779 zio_taskq_dispatch(pio, type, B_FALSE);
780 }
781 } else {
782 mutex_exit(&pio->io_lock);
783 }
784 }
785
786 static void
787 zio_inherit_child_errors(zio_t *zio, enum zio_child c)
788 {
789 if (zio->io_child_error[c] != 0 && zio->io_error == 0)
790 zio->io_error = zio->io_child_error[c];
791 }
792
793 int
794 zio_bookmark_compare(const void *x1, const void *x2)
795 {
796 const zio_t *z1 = x1;
797 const zio_t *z2 = x2;
798
799 if (z1->io_bookmark.zb_objset < z2->io_bookmark.zb_objset)
800 return (-1);
801 if (z1->io_bookmark.zb_objset > z2->io_bookmark.zb_objset)
802 return (1);
803
804 if (z1->io_bookmark.zb_object < z2->io_bookmark.zb_object)
805 return (-1);
806 if (z1->io_bookmark.zb_object > z2->io_bookmark.zb_object)
807 return (1);
808
809 if (z1->io_bookmark.zb_level < z2->io_bookmark.zb_level)
810 return (-1);
811 if (z1->io_bookmark.zb_level > z2->io_bookmark.zb_level)
812 return (1);
813
814 if (z1->io_bookmark.zb_blkid < z2->io_bookmark.zb_blkid)
815 return (-1);
816 if (z1->io_bookmark.zb_blkid > z2->io_bookmark.zb_blkid)
817 return (1);
818
819 if (z1 < z2)
820 return (-1);
821 if (z1 > z2)
822 return (1);
823
824 return (0);
825 }
826
827 /*
828 * ==========================================================================
829 * Create the various types of I/O (read, write, free, etc)
830 * ==========================================================================
831 */
832 static zio_t *
833 zio_create(zio_t *pio, spa_t *spa, uint64_t txg, const blkptr_t *bp,
834 abd_t *data, uint64_t lsize, uint64_t psize, zio_done_func_t *done,
835 void *private, zio_type_t type, zio_priority_t priority,
836 zio_flag_t flags, vdev_t *vd, uint64_t offset,
837 const zbookmark_phys_t *zb, enum zio_stage stage,
838 enum zio_stage pipeline)
839 {
840 zio_t *zio;
841
842 IMPLY(type != ZIO_TYPE_TRIM, psize <= SPA_MAXBLOCKSIZE);
843 ASSERT(P2PHASE(psize, SPA_MINBLOCKSIZE) == 0);
844 ASSERT(P2PHASE(offset, SPA_MINBLOCKSIZE) == 0);
845
846 ASSERT(!vd || spa_config_held(spa, SCL_STATE_ALL, RW_READER));
847 ASSERT(!bp || !(flags & ZIO_FLAG_CONFIG_WRITER));
848 ASSERT(vd || stage == ZIO_STAGE_OPEN);
849
850 IMPLY(lsize != psize, (flags & ZIO_FLAG_RAW_COMPRESS) != 0);
851
852 zio = kmem_cache_alloc(zio_cache, KM_SLEEP);
853 memset(zio, 0, sizeof (zio_t));
854
855 mutex_init(&zio->io_lock, NULL, MUTEX_NOLOCKDEP, NULL);
856 cv_init(&zio->io_cv, NULL, CV_DEFAULT, NULL);
857
858 list_create(&zio->io_parent_list, sizeof (zio_link_t),
859 offsetof(zio_link_t, zl_parent_node));
860 list_create(&zio->io_child_list, sizeof (zio_link_t),
861 offsetof(zio_link_t, zl_child_node));
862 metaslab_trace_init(&zio->io_alloc_list);
863
864 if (vd != NULL)
865 zio->io_child_type = ZIO_CHILD_VDEV;
866 else if (flags & ZIO_FLAG_GANG_CHILD)
867 zio->io_child_type = ZIO_CHILD_GANG;
868 else if (flags & ZIO_FLAG_DDT_CHILD)
869 zio->io_child_type = ZIO_CHILD_DDT;
870 else
871 zio->io_child_type = ZIO_CHILD_LOGICAL;
872
873 if (bp != NULL) {
874 if (type != ZIO_TYPE_WRITE ||
875 zio->io_child_type == ZIO_CHILD_DDT) {
876 zio->io_bp_copy = *bp;
877 zio->io_bp = &zio->io_bp_copy; /* so caller can free */
878 } else {
879 zio->io_bp = (blkptr_t *)bp;
880 }
881 zio->io_bp_orig = *bp;
882 if (zio->io_child_type == ZIO_CHILD_LOGICAL)
883 zio->io_logical = zio;
884 if (zio->io_child_type > ZIO_CHILD_GANG && BP_IS_GANG(bp))
885 pipeline |= ZIO_GANG_STAGES;
886 }
887
888 zio->io_spa = spa;
889 zio->io_txg = txg;
890 zio->io_done = done;
891 zio->io_private = private;
892 zio->io_type = type;
893 zio->io_priority = priority;
894 zio->io_vd = vd;
895 zio->io_offset = offset;
896 zio->io_orig_abd = zio->io_abd = data;
897 zio->io_orig_size = zio->io_size = psize;
898 zio->io_lsize = lsize;
899 zio->io_orig_flags = zio->io_flags = flags;
900 zio->io_orig_stage = zio->io_stage = stage;
901 zio->io_orig_pipeline = zio->io_pipeline = pipeline;
902 zio->io_pipeline_trace = ZIO_STAGE_OPEN;
903
904 zio->io_state[ZIO_WAIT_READY] = (stage >= ZIO_STAGE_READY);
905 zio->io_state[ZIO_WAIT_DONE] = (stage >= ZIO_STAGE_DONE);
906
907 if (zb != NULL)
908 zio->io_bookmark = *zb;
909
910 if (pio != NULL) {
911 zio->io_metaslab_class = pio->io_metaslab_class;
912 if (zio->io_logical == NULL)
913 zio->io_logical = pio->io_logical;
914 if (zio->io_child_type == ZIO_CHILD_GANG)
915 zio->io_gang_leader = pio->io_gang_leader;
916 zio_add_child_first(pio, zio);
917 }
918
919 taskq_init_ent(&zio->io_tqent);
920
921 return (zio);
922 }
923
924 void
925 zio_destroy(zio_t *zio)
926 {
927 metaslab_trace_fini(&zio->io_alloc_list);
928 list_destroy(&zio->io_parent_list);
929 list_destroy(&zio->io_child_list);
930 mutex_destroy(&zio->io_lock);
931 cv_destroy(&zio->io_cv);
932 kmem_cache_free(zio_cache, zio);
933 }
934
935 zio_t *
936 zio_null(zio_t *pio, spa_t *spa, vdev_t *vd, zio_done_func_t *done,
937 void *private, zio_flag_t flags)
938 {
939 zio_t *zio;
940
941 zio = zio_create(pio, spa, 0, NULL, NULL, 0, 0, done, private,
942 ZIO_TYPE_NULL, ZIO_PRIORITY_NOW, flags, vd, 0, NULL,
943 ZIO_STAGE_OPEN, ZIO_INTERLOCK_PIPELINE);
944
945 return (zio);
946 }
947
948 zio_t *
949 zio_root(spa_t *spa, zio_done_func_t *done, void *private, zio_flag_t flags)
950 {
951 return (zio_null(NULL, spa, NULL, done, private, flags));
952 }
953
954 static int
955 zfs_blkptr_verify_log(spa_t *spa, const blkptr_t *bp,
956 enum blk_verify_flag blk_verify, const char *fmt, ...)
957 {
958 va_list adx;
959 char buf[256];
960
961 va_start(adx, fmt);
962 (void) vsnprintf(buf, sizeof (buf), fmt, adx);
963 va_end(adx);
964
965 zfs_dbgmsg("bad blkptr at %px: "
966 "DVA[0]=%#llx/%#llx "
967 "DVA[1]=%#llx/%#llx "
968 "DVA[2]=%#llx/%#llx "
969 "prop=%#llx "
970 "pad=%#llx,%#llx "
971 "phys_birth=%#llx "
972 "birth=%#llx "
973 "fill=%#llx "
974 "cksum=%#llx/%#llx/%#llx/%#llx",
975 bp,
976 (long long)bp->blk_dva[0].dva_word[0],
977 (long long)bp->blk_dva[0].dva_word[1],
978 (long long)bp->blk_dva[1].dva_word[0],
979 (long long)bp->blk_dva[1].dva_word[1],
980 (long long)bp->blk_dva[2].dva_word[0],
981 (long long)bp->blk_dva[2].dva_word[1],
982 (long long)bp->blk_prop,
983 (long long)bp->blk_pad[0],
984 (long long)bp->blk_pad[1],
985 (long long)bp->blk_phys_birth,
986 (long long)bp->blk_birth,
987 (long long)bp->blk_fill,
988 (long long)bp->blk_cksum.zc_word[0],
989 (long long)bp->blk_cksum.zc_word[1],
990 (long long)bp->blk_cksum.zc_word[2],
991 (long long)bp->blk_cksum.zc_word[3]);
992 switch (blk_verify) {
993 case BLK_VERIFY_HALT:
994 zfs_panic_recover("%s: %s", spa_name(spa), buf);
995 break;
996 case BLK_VERIFY_LOG:
997 zfs_dbgmsg("%s: %s", spa_name(spa), buf);
998 break;
999 case BLK_VERIFY_ONLY:
1000 break;
1001 }
1002
1003 return (1);
1004 }
1005
1006 /*
1007 * Verify the block pointer fields contain reasonable values. This means
1008 * it only contains known object types, checksum/compression identifiers,
1009 * block sizes within the maximum allowed limits, valid DVAs, etc.
1010 *
1011 * If everything checks out B_TRUE is returned. The zfs_blkptr_verify
1012 * argument controls the behavior when an invalid field is detected.
1013 *
1014 * Values for blk_verify_flag:
1015 * BLK_VERIFY_ONLY: evaluate the block
1016 * BLK_VERIFY_LOG: evaluate the block and log problems
1017 * BLK_VERIFY_HALT: call zfs_panic_recover on error
1018 *
1019 * Values for blk_config_flag:
1020 * BLK_CONFIG_HELD: caller holds SCL_VDEV for writer
1021 * BLK_CONFIG_NEEDED: caller holds no config lock, SCL_VDEV will be
1022 * obtained for reader
1023 * BLK_CONFIG_SKIP: skip checks which require SCL_VDEV, for better
1024 * performance
1025 */
1026 boolean_t
1027 zfs_blkptr_verify(spa_t *spa, const blkptr_t *bp,
1028 enum blk_config_flag blk_config, enum blk_verify_flag blk_verify)
1029 {
1030 int errors = 0;
1031
1032 if (!DMU_OT_IS_VALID(BP_GET_TYPE(bp))) {
1033 errors += zfs_blkptr_verify_log(spa, bp, blk_verify,
1034 "blkptr at %px has invalid TYPE %llu",
1035 bp, (longlong_t)BP_GET_TYPE(bp));
1036 }
1037 if (BP_GET_CHECKSUM(bp) >= ZIO_CHECKSUM_FUNCTIONS) {
1038 errors += zfs_blkptr_verify_log(spa, bp, blk_verify,
1039 "blkptr at %px has invalid CHECKSUM %llu",
1040 bp, (longlong_t)BP_GET_CHECKSUM(bp));
1041 }
1042 if (BP_GET_COMPRESS(bp) >= ZIO_COMPRESS_FUNCTIONS) {
1043 errors += zfs_blkptr_verify_log(spa, bp, blk_verify,
1044 "blkptr at %px has invalid COMPRESS %llu",
1045 bp, (longlong_t)BP_GET_COMPRESS(bp));
1046 }
1047 if (BP_GET_LSIZE(bp) > SPA_MAXBLOCKSIZE) {
1048 errors += zfs_blkptr_verify_log(spa, bp, blk_verify,
1049 "blkptr at %px has invalid LSIZE %llu",
1050 bp, (longlong_t)BP_GET_LSIZE(bp));
1051 }
1052 if (BP_GET_PSIZE(bp) > SPA_MAXBLOCKSIZE) {
1053 errors += zfs_blkptr_verify_log(spa, bp, blk_verify,
1054 "blkptr at %px has invalid PSIZE %llu",
1055 bp, (longlong_t)BP_GET_PSIZE(bp));
1056 }
1057
1058 if (BP_IS_EMBEDDED(bp)) {
1059 if (BPE_GET_ETYPE(bp) >= NUM_BP_EMBEDDED_TYPES) {
1060 errors += zfs_blkptr_verify_log(spa, bp, blk_verify,
1061 "blkptr at %px has invalid ETYPE %llu",
1062 bp, (longlong_t)BPE_GET_ETYPE(bp));
1063 }
1064 }
1065
1066 /*
1067 * Do not verify individual DVAs if the config is not trusted. This
1068 * will be done once the zio is executed in vdev_mirror_map_alloc.
1069 */
1070 if (!spa->spa_trust_config)
1071 return (errors == 0);
1072
1073 switch (blk_config) {
1074 case BLK_CONFIG_HELD:
1075 ASSERT(spa_config_held(spa, SCL_VDEV, RW_WRITER));
1076 break;
1077 case BLK_CONFIG_NEEDED:
1078 spa_config_enter(spa, SCL_VDEV, bp, RW_READER);
1079 break;
1080 case BLK_CONFIG_SKIP:
1081 return (errors == 0);
1082 default:
1083 panic("invalid blk_config %u", blk_config);
1084 }
1085
1086 /*
1087 * Pool-specific checks.
1088 *
1089 * Note: it would be nice to verify that the blk_birth and
1090 * BP_PHYSICAL_BIRTH() are not too large. However, spa_freeze()
1091 * allows the birth time of log blocks (and dmu_sync()-ed blocks
1092 * that are in the log) to be arbitrarily large.
1093 */
1094 for (int i = 0; i < BP_GET_NDVAS(bp); i++) {
1095 const dva_t *dva = &bp->blk_dva[i];
1096 uint64_t vdevid = DVA_GET_VDEV(dva);
1097
1098 if (vdevid >= spa->spa_root_vdev->vdev_children) {
1099 errors += zfs_blkptr_verify_log(spa, bp, blk_verify,
1100 "blkptr at %px DVA %u has invalid VDEV %llu",
1101 bp, i, (longlong_t)vdevid);
1102 continue;
1103 }
1104 vdev_t *vd = spa->spa_root_vdev->vdev_child[vdevid];
1105 if (vd == NULL) {
1106 errors += zfs_blkptr_verify_log(spa, bp, blk_verify,
1107 "blkptr at %px DVA %u has invalid VDEV %llu",
1108 bp, i, (longlong_t)vdevid);
1109 continue;
1110 }
1111 if (vd->vdev_ops == &vdev_hole_ops) {
1112 errors += zfs_blkptr_verify_log(spa, bp, blk_verify,
1113 "blkptr at %px DVA %u has hole VDEV %llu",
1114 bp, i, (longlong_t)vdevid);
1115 continue;
1116 }
1117 if (vd->vdev_ops == &vdev_missing_ops) {
1118 /*
1119 * "missing" vdevs are valid during import, but we
1120 * don't have their detailed info (e.g. asize), so
1121 * we can't perform any more checks on them.
1122 */
1123 continue;
1124 }
1125 uint64_t offset = DVA_GET_OFFSET(dva);
1126 uint64_t asize = DVA_GET_ASIZE(dva);
1127 if (DVA_GET_GANG(dva))
1128 asize = vdev_gang_header_asize(vd);
1129 if (offset + asize > vd->vdev_asize) {
1130 errors += zfs_blkptr_verify_log(spa, bp, blk_verify,
1131 "blkptr at %px DVA %u has invalid OFFSET %llu",
1132 bp, i, (longlong_t)offset);
1133 }
1134 }
1135 if (blk_config == BLK_CONFIG_NEEDED)
1136 spa_config_exit(spa, SCL_VDEV, bp);
1137
1138 return (errors == 0);
1139 }
1140
1141 boolean_t
1142 zfs_dva_valid(spa_t *spa, const dva_t *dva, const blkptr_t *bp)
1143 {
1144 (void) bp;
1145 uint64_t vdevid = DVA_GET_VDEV(dva);
1146
1147 if (vdevid >= spa->spa_root_vdev->vdev_children)
1148 return (B_FALSE);
1149
1150 vdev_t *vd = spa->spa_root_vdev->vdev_child[vdevid];
1151 if (vd == NULL)
1152 return (B_FALSE);
1153
1154 if (vd->vdev_ops == &vdev_hole_ops)
1155 return (B_FALSE);
1156
1157 if (vd->vdev_ops == &vdev_missing_ops) {
1158 return (B_FALSE);
1159 }
1160
1161 uint64_t offset = DVA_GET_OFFSET(dva);
1162 uint64_t asize = DVA_GET_ASIZE(dva);
1163
1164 if (DVA_GET_GANG(dva))
1165 asize = vdev_gang_header_asize(vd);
1166 if (offset + asize > vd->vdev_asize)
1167 return (B_FALSE);
1168
1169 return (B_TRUE);
1170 }
1171
1172 zio_t *
1173 zio_read(zio_t *pio, spa_t *spa, const blkptr_t *bp,
1174 abd_t *data, uint64_t size, zio_done_func_t *done, void *private,
1175 zio_priority_t priority, zio_flag_t flags, const zbookmark_phys_t *zb)
1176 {
1177 zio_t *zio;
1178
1179 zio = zio_create(pio, spa, BP_PHYSICAL_BIRTH(bp), bp,
1180 data, size, size, done, private,
1181 ZIO_TYPE_READ, priority, flags, NULL, 0, zb,
1182 ZIO_STAGE_OPEN, (flags & ZIO_FLAG_DDT_CHILD) ?
1183 ZIO_DDT_CHILD_READ_PIPELINE : ZIO_READ_PIPELINE);
1184
1185 return (zio);
1186 }
1187
1188 zio_t *
1189 zio_write(zio_t *pio, spa_t *spa, uint64_t txg, blkptr_t *bp,
1190 abd_t *data, uint64_t lsize, uint64_t psize, const zio_prop_t *zp,
1191 zio_done_func_t *ready, zio_done_func_t *children_ready,
1192 zio_done_func_t *done, void *private, zio_priority_t priority,
1193 zio_flag_t flags, const zbookmark_phys_t *zb)
1194 {
1195 zio_t *zio;
1196
1197 ASSERT(zp->zp_checksum >= ZIO_CHECKSUM_OFF &&
1198 zp->zp_checksum < ZIO_CHECKSUM_FUNCTIONS &&
1199 zp->zp_compress >= ZIO_COMPRESS_OFF &&
1200 zp->zp_compress < ZIO_COMPRESS_FUNCTIONS &&
1201 DMU_OT_IS_VALID(zp->zp_type) &&
1202 zp->zp_level < 32 &&
1203 zp->zp_copies > 0 &&
1204 zp->zp_copies <= spa_max_replication(spa));
1205
1206 zio = zio_create(pio, spa, txg, bp, data, lsize, psize, done, private,
1207 ZIO_TYPE_WRITE, priority, flags, NULL, 0, zb,
1208 ZIO_STAGE_OPEN, (flags & ZIO_FLAG_DDT_CHILD) ?
1209 ZIO_DDT_CHILD_WRITE_PIPELINE : ZIO_WRITE_PIPELINE);
1210
1211 zio->io_ready = ready;
1212 zio->io_children_ready = children_ready;
1213 zio->io_prop = *zp;
1214
1215 /*
1216 * Data can be NULL if we are going to call zio_write_override() to
1217 * provide the already-allocated BP. But we may need the data to
1218 * verify a dedup hit (if requested). In this case, don't try to
1219 * dedup (just take the already-allocated BP verbatim). Encrypted
1220 * dedup blocks need data as well so we also disable dedup in this
1221 * case.
1222 */
1223 if (data == NULL &&
1224 (zio->io_prop.zp_dedup_verify || zio->io_prop.zp_encrypt)) {
1225 zio->io_prop.zp_dedup = zio->io_prop.zp_dedup_verify = B_FALSE;
1226 }
1227
1228 return (zio);
1229 }
1230
1231 zio_t *
1232 zio_rewrite(zio_t *pio, spa_t *spa, uint64_t txg, blkptr_t *bp, abd_t *data,
1233 uint64_t size, zio_done_func_t *done, void *private,
1234 zio_priority_t priority, zio_flag_t flags, zbookmark_phys_t *zb)
1235 {
1236 zio_t *zio;
1237
1238 zio = zio_create(pio, spa, txg, bp, data, size, size, done, private,
1239 ZIO_TYPE_WRITE, priority, flags | ZIO_FLAG_IO_REWRITE, NULL, 0, zb,
1240 ZIO_STAGE_OPEN, ZIO_REWRITE_PIPELINE);
1241
1242 return (zio);
1243 }
1244
1245 void
1246 zio_write_override(zio_t *zio, blkptr_t *bp, int copies, boolean_t nopwrite,
1247 boolean_t brtwrite)
1248 {
1249 ASSERT(zio->io_type == ZIO_TYPE_WRITE);
1250 ASSERT(zio->io_child_type == ZIO_CHILD_LOGICAL);
1251 ASSERT(zio->io_stage == ZIO_STAGE_OPEN);
1252 ASSERT(zio->io_txg == spa_syncing_txg(zio->io_spa));
1253 ASSERT(!brtwrite || !nopwrite);
1254
1255 /*
1256 * We must reset the io_prop to match the values that existed
1257 * when the bp was first written by dmu_sync() keeping in mind
1258 * that nopwrite and dedup are mutually exclusive.
1259 */
1260 zio->io_prop.zp_dedup = nopwrite ? B_FALSE : zio->io_prop.zp_dedup;
1261 zio->io_prop.zp_nopwrite = nopwrite;
1262 zio->io_prop.zp_brtwrite = brtwrite;
1263 zio->io_prop.zp_copies = copies;
1264 zio->io_bp_override = bp;
1265 }
1266
1267 void
1268 zio_free(spa_t *spa, uint64_t txg, const blkptr_t *bp)
1269 {
1270
1271 (void) zfs_blkptr_verify(spa, bp, BLK_CONFIG_NEEDED, BLK_VERIFY_HALT);
1272
1273 /*
1274 * The check for EMBEDDED is a performance optimization. We
1275 * process the free here (by ignoring it) rather than
1276 * putting it on the list and then processing it in zio_free_sync().
1277 */
1278 if (BP_IS_EMBEDDED(bp))
1279 return;
1280
1281 /*
1282 * Frees that are for the currently-syncing txg, are not going to be
1283 * deferred, and which will not need to do a read (i.e. not GANG or
1284 * DEDUP), can be processed immediately. Otherwise, put them on the
1285 * in-memory list for later processing.
1286 *
1287 * Note that we only defer frees after zfs_sync_pass_deferred_free
1288 * when the log space map feature is disabled. [see relevant comment
1289 * in spa_sync_iterate_to_convergence()]
1290 */
1291 if (BP_IS_GANG(bp) ||
1292 BP_GET_DEDUP(bp) ||
1293 txg != spa->spa_syncing_txg ||
1294 (spa_sync_pass(spa) >= zfs_sync_pass_deferred_free &&
1295 !spa_feature_is_active(spa, SPA_FEATURE_LOG_SPACEMAP)) ||
1296 brt_maybe_exists(spa, bp)) {
1297 metaslab_check_free(spa, bp);
1298 bplist_append(&spa->spa_free_bplist[txg & TXG_MASK], bp);
1299 } else {
1300 VERIFY3P(zio_free_sync(NULL, spa, txg, bp, 0), ==, NULL);
1301 }
1302 }
1303
1304 /*
1305 * To improve performance, this function may return NULL if we were able
1306 * to do the free immediately. This avoids the cost of creating a zio
1307 * (and linking it to the parent, etc).
1308 */
1309 zio_t *
1310 zio_free_sync(zio_t *pio, spa_t *spa, uint64_t txg, const blkptr_t *bp,
1311 zio_flag_t flags)
1312 {
1313 ASSERT(!BP_IS_HOLE(bp));
1314 ASSERT(spa_syncing_txg(spa) == txg);
1315
1316 if (BP_IS_EMBEDDED(bp))
1317 return (NULL);
1318
1319 metaslab_check_free(spa, bp);
1320 arc_freed(spa, bp);
1321 dsl_scan_freed(spa, bp);
1322
1323 if (BP_IS_GANG(bp) ||
1324 BP_GET_DEDUP(bp) ||
1325 brt_maybe_exists(spa, bp)) {
1326 /*
1327 * GANG, DEDUP and BRT blocks can induce a read (for the gang
1328 * block header, the DDT or the BRT), so issue them
1329 * asynchronously so that this thread is not tied up.
1330 */
1331 enum zio_stage stage =
1332 ZIO_FREE_PIPELINE | ZIO_STAGE_ISSUE_ASYNC;
1333
1334 return (zio_create(pio, spa, txg, bp, NULL, BP_GET_PSIZE(bp),
1335 BP_GET_PSIZE(bp), NULL, NULL,
1336 ZIO_TYPE_FREE, ZIO_PRIORITY_NOW,
1337 flags, NULL, 0, NULL, ZIO_STAGE_OPEN, stage));
1338 } else {
1339 metaslab_free(spa, bp, txg, B_FALSE);
1340 return (NULL);
1341 }
1342 }
1343
1344 zio_t *
1345 zio_claim(zio_t *pio, spa_t *spa, uint64_t txg, const blkptr_t *bp,
1346 zio_done_func_t *done, void *private, zio_flag_t flags)
1347 {
1348 zio_t *zio;
1349
1350 (void) zfs_blkptr_verify(spa, bp, (flags & ZIO_FLAG_CONFIG_WRITER) ?
1351 BLK_CONFIG_HELD : BLK_CONFIG_NEEDED, BLK_VERIFY_HALT);
1352
1353 if (BP_IS_EMBEDDED(bp))
1354 return (zio_null(pio, spa, NULL, NULL, NULL, 0));
1355
1356 /*
1357 * A claim is an allocation of a specific block. Claims are needed
1358 * to support immediate writes in the intent log. The issue is that
1359 * immediate writes contain committed data, but in a txg that was
1360 * *not* committed. Upon opening the pool after an unclean shutdown,
1361 * the intent log claims all blocks that contain immediate write data
1362 * so that the SPA knows they're in use.
1363 *
1364 * All claims *must* be resolved in the first txg -- before the SPA
1365 * starts allocating blocks -- so that nothing is allocated twice.
1366 * If txg == 0 we just verify that the block is claimable.
1367 */
1368 ASSERT3U(spa->spa_uberblock.ub_rootbp.blk_birth, <,
1369 spa_min_claim_txg(spa));
1370 ASSERT(txg == spa_min_claim_txg(spa) || txg == 0);
1371 ASSERT(!BP_GET_DEDUP(bp) || !spa_writeable(spa)); /* zdb(8) */
1372
1373 zio = zio_create(pio, spa, txg, bp, NULL, BP_GET_PSIZE(bp),
1374 BP_GET_PSIZE(bp), done, private, ZIO_TYPE_CLAIM, ZIO_PRIORITY_NOW,
1375 flags, NULL, 0, NULL, ZIO_STAGE_OPEN, ZIO_CLAIM_PIPELINE);
1376 ASSERT0(zio->io_queued_timestamp);
1377
1378 return (zio);
1379 }
1380
1381 zio_t *
1382 zio_ioctl(zio_t *pio, spa_t *spa, vdev_t *vd, int cmd,
1383 zio_done_func_t *done, void *private, zio_flag_t flags)
1384 {
1385 zio_t *zio;
1386 int c;
1387
1388 if (vd->vdev_children == 0) {
1389 zio = zio_create(pio, spa, 0, NULL, NULL, 0, 0, done, private,
1390 ZIO_TYPE_IOCTL, ZIO_PRIORITY_NOW, flags, vd, 0, NULL,
1391 ZIO_STAGE_OPEN, ZIO_IOCTL_PIPELINE);
1392
1393 zio->io_cmd = cmd;
1394 } else {
1395 zio = zio_null(pio, spa, NULL, NULL, NULL, flags);
1396
1397 for (c = 0; c < vd->vdev_children; c++)
1398 zio_nowait(zio_ioctl(zio, spa, vd->vdev_child[c], cmd,
1399 done, private, flags));
1400 }
1401
1402 return (zio);
1403 }
1404
1405 zio_t *
1406 zio_trim(zio_t *pio, vdev_t *vd, uint64_t offset, uint64_t size,
1407 zio_done_func_t *done, void *private, zio_priority_t priority,
1408 zio_flag_t flags, enum trim_flag trim_flags)
1409 {
1410 zio_t *zio;
1411
1412 ASSERT0(vd->vdev_children);
1413 ASSERT0(P2PHASE(offset, 1ULL << vd->vdev_ashift));
1414 ASSERT0(P2PHASE(size, 1ULL << vd->vdev_ashift));
1415 ASSERT3U(size, !=, 0);
1416
1417 zio = zio_create(pio, vd->vdev_spa, 0, NULL, NULL, size, size, done,
1418 private, ZIO_TYPE_TRIM, priority, flags | ZIO_FLAG_PHYSICAL,
1419 vd, offset, NULL, ZIO_STAGE_OPEN, ZIO_TRIM_PIPELINE);
1420 zio->io_trim_flags = trim_flags;
1421
1422 return (zio);
1423 }
1424
1425 zio_t *
1426 zio_read_phys(zio_t *pio, vdev_t *vd, uint64_t offset, uint64_t size,
1427 abd_t *data, int checksum, zio_done_func_t *done, void *private,
1428 zio_priority_t priority, zio_flag_t flags, boolean_t labels)
1429 {
1430 zio_t *zio;
1431
1432 ASSERT(vd->vdev_children == 0);
1433 ASSERT(!labels || offset + size <= VDEV_LABEL_START_SIZE ||
1434 offset >= vd->vdev_psize - VDEV_LABEL_END_SIZE);
1435 ASSERT3U(offset + size, <=, vd->vdev_psize);
1436
1437 zio = zio_create(pio, vd->vdev_spa, 0, NULL, data, size, size, done,
1438 private, ZIO_TYPE_READ, priority, flags | ZIO_FLAG_PHYSICAL, vd,
1439 offset, NULL, ZIO_STAGE_OPEN, ZIO_READ_PHYS_PIPELINE);
1440
1441 zio->io_prop.zp_checksum = checksum;
1442
1443 return (zio);
1444 }
1445
1446 zio_t *
1447 zio_write_phys(zio_t *pio, vdev_t *vd, uint64_t offset, uint64_t size,
1448 abd_t *data, int checksum, zio_done_func_t *done, void *private,
1449 zio_priority_t priority, zio_flag_t flags, boolean_t labels)
1450 {
1451 zio_t *zio;
1452
1453 ASSERT(vd->vdev_children == 0);
1454 ASSERT(!labels || offset + size <= VDEV_LABEL_START_SIZE ||
1455 offset >= vd->vdev_psize - VDEV_LABEL_END_SIZE);
1456 ASSERT3U(offset + size, <=, vd->vdev_psize);
1457
1458 zio = zio_create(pio, vd->vdev_spa, 0, NULL, data, size, size, done,
1459 private, ZIO_TYPE_WRITE, priority, flags | ZIO_FLAG_PHYSICAL, vd,
1460 offset, NULL, ZIO_STAGE_OPEN, ZIO_WRITE_PHYS_PIPELINE);
1461
1462 zio->io_prop.zp_checksum = checksum;
1463
1464 if (zio_checksum_table[checksum].ci_flags & ZCHECKSUM_FLAG_EMBEDDED) {
1465 /*
1466 * zec checksums are necessarily destructive -- they modify
1467 * the end of the write buffer to hold the verifier/checksum.
1468 * Therefore, we must make a local copy in case the data is
1469 * being written to multiple places in parallel.
1470 */
1471 abd_t *wbuf = abd_alloc_sametype(data, size);
1472 abd_copy(wbuf, data, size);
1473
1474 zio_push_transform(zio, wbuf, size, size, NULL);
1475 }
1476
1477 return (zio);
1478 }
1479
1480 /*
1481 * Create a child I/O to do some work for us.
1482 */
1483 zio_t *
1484 zio_vdev_child_io(zio_t *pio, blkptr_t *bp, vdev_t *vd, uint64_t offset,
1485 abd_t *data, uint64_t size, int type, zio_priority_t priority,
1486 zio_flag_t flags, zio_done_func_t *done, void *private)
1487 {
1488 enum zio_stage pipeline = ZIO_VDEV_CHILD_PIPELINE;
1489 zio_t *zio;
1490
1491 /*
1492 * vdev child I/Os do not propagate their error to the parent.
1493 * Therefore, for correct operation the caller *must* check for
1494 * and handle the error in the child i/o's done callback.
1495 * The only exceptions are i/os that we don't care about
1496 * (OPTIONAL or REPAIR).
1497 */
1498 ASSERT((flags & ZIO_FLAG_OPTIONAL) || (flags & ZIO_FLAG_IO_REPAIR) ||
1499 done != NULL);
1500
1501 if (type == ZIO_TYPE_READ && bp != NULL) {
1502 /*
1503 * If we have the bp, then the child should perform the
1504 * checksum and the parent need not. This pushes error
1505 * detection as close to the leaves as possible and
1506 * eliminates redundant checksums in the interior nodes.
1507 */
1508 pipeline |= ZIO_STAGE_CHECKSUM_VERIFY;
1509 pio->io_pipeline &= ~ZIO_STAGE_CHECKSUM_VERIFY;
1510 }
1511
1512 if (vd->vdev_ops->vdev_op_leaf) {
1513 ASSERT0(vd->vdev_children);
1514 offset += VDEV_LABEL_START_SIZE;
1515 }
1516
1517 flags |= ZIO_VDEV_CHILD_FLAGS(pio);
1518
1519 /*
1520 * If we've decided to do a repair, the write is not speculative --
1521 * even if the original read was.
1522 */
1523 if (flags & ZIO_FLAG_IO_REPAIR)
1524 flags &= ~ZIO_FLAG_SPECULATIVE;
1525
1526 /*
1527 * If we're creating a child I/O that is not associated with a
1528 * top-level vdev, then the child zio is not an allocating I/O.
1529 * If this is a retried I/O then we ignore it since we will
1530 * have already processed the original allocating I/O.
1531 */
1532 if (flags & ZIO_FLAG_IO_ALLOCATING &&
1533 (vd != vd->vdev_top || (flags & ZIO_FLAG_IO_RETRY))) {
1534 ASSERT(pio->io_metaslab_class != NULL);
1535 ASSERT(pio->io_metaslab_class->mc_alloc_throttle_enabled);
1536 ASSERT(type == ZIO_TYPE_WRITE);
1537 ASSERT(priority == ZIO_PRIORITY_ASYNC_WRITE);
1538 ASSERT(!(flags & ZIO_FLAG_IO_REPAIR));
1539 ASSERT(!(pio->io_flags & ZIO_FLAG_IO_REWRITE) ||
1540 pio->io_child_type == ZIO_CHILD_GANG);
1541
1542 flags &= ~ZIO_FLAG_IO_ALLOCATING;
1543 }
1544
1545 zio = zio_create(pio, pio->io_spa, pio->io_txg, bp, data, size, size,
1546 done, private, type, priority, flags, vd, offset, &pio->io_bookmark,
1547 ZIO_STAGE_VDEV_IO_START >> 1, pipeline);
1548 ASSERT3U(zio->io_child_type, ==, ZIO_CHILD_VDEV);
1549
1550 return (zio);
1551 }
1552
1553 zio_t *
1554 zio_vdev_delegated_io(vdev_t *vd, uint64_t offset, abd_t *data, uint64_t size,
1555 zio_type_t type, zio_priority_t priority, zio_flag_t flags,
1556 zio_done_func_t *done, void *private)
1557 {
1558 zio_t *zio;
1559
1560 ASSERT(vd->vdev_ops->vdev_op_leaf);
1561
1562 zio = zio_create(NULL, vd->vdev_spa, 0, NULL,
1563 data, size, size, done, private, type, priority,
1564 flags | ZIO_FLAG_CANFAIL | ZIO_FLAG_DONT_RETRY | ZIO_FLAG_DELEGATED,
1565 vd, offset, NULL,
1566 ZIO_STAGE_VDEV_IO_START >> 1, ZIO_VDEV_CHILD_PIPELINE);
1567
1568 return (zio);
1569 }
1570
1571 void
1572 zio_flush(zio_t *zio, vdev_t *vd)
1573 {
1574 zio_nowait(zio_ioctl(zio, zio->io_spa, vd, DKIOCFLUSHWRITECACHE,
1575 NULL, NULL,
1576 ZIO_FLAG_CANFAIL | ZIO_FLAG_DONT_PROPAGATE | ZIO_FLAG_DONT_RETRY));
1577 }
1578
1579 void
1580 zio_shrink(zio_t *zio, uint64_t size)
1581 {
1582 ASSERT3P(zio->io_executor, ==, NULL);
1583 ASSERT3U(zio->io_orig_size, ==, zio->io_size);
1584 ASSERT3U(size, <=, zio->io_size);
1585
1586 /*
1587 * We don't shrink for raidz because of problems with the
1588 * reconstruction when reading back less than the block size.
1589 * Note, BP_IS_RAIDZ() assumes no compression.
1590 */
1591 ASSERT(BP_GET_COMPRESS(zio->io_bp) == ZIO_COMPRESS_OFF);
1592 if (!BP_IS_RAIDZ(zio->io_bp)) {
1593 /* we are not doing a raw write */
1594 ASSERT3U(zio->io_size, ==, zio->io_lsize);
1595 zio->io_orig_size = zio->io_size = zio->io_lsize = size;
1596 }
1597 }
1598
1599 /*
1600 * Round provided allocation size up to a value that can be allocated
1601 * by at least some vdev(s) in the pool with minimum or no additional
1602 * padding and without extra space usage on others
1603 */
1604 static uint64_t
1605 zio_roundup_alloc_size(spa_t *spa, uint64_t size)
1606 {
1607 if (size > spa->spa_min_alloc)
1608 return (roundup(size, spa->spa_gcd_alloc));
1609 return (spa->spa_min_alloc);
1610 }
1611
1612 /*
1613 * ==========================================================================
1614 * Prepare to read and write logical blocks
1615 * ==========================================================================
1616 */
1617
1618 static zio_t *
1619 zio_read_bp_init(zio_t *zio)
1620 {
1621 blkptr_t *bp = zio->io_bp;
1622 uint64_t psize =
1623 BP_IS_EMBEDDED(bp) ? BPE_GET_PSIZE(bp) : BP_GET_PSIZE(bp);
1624
1625 ASSERT3P(zio->io_bp, ==, &zio->io_bp_copy);
1626
1627 if (BP_GET_COMPRESS(bp) != ZIO_COMPRESS_OFF &&
1628 zio->io_child_type == ZIO_CHILD_LOGICAL &&
1629 !(zio->io_flags & ZIO_FLAG_RAW_COMPRESS)) {
1630 zio_push_transform(zio, abd_alloc_sametype(zio->io_abd, psize),
1631 psize, psize, zio_decompress);
1632 }
1633
1634 if (((BP_IS_PROTECTED(bp) && !(zio->io_flags & ZIO_FLAG_RAW_ENCRYPT)) ||
1635 BP_HAS_INDIRECT_MAC_CKSUM(bp)) &&
1636 zio->io_child_type == ZIO_CHILD_LOGICAL) {
1637 zio_push_transform(zio, abd_alloc_sametype(zio->io_abd, psize),
1638 psize, psize, zio_decrypt);
1639 }
1640
1641 if (BP_IS_EMBEDDED(bp) && BPE_GET_ETYPE(bp) == BP_EMBEDDED_TYPE_DATA) {
1642 int psize = BPE_GET_PSIZE(bp);
1643 void *data = abd_borrow_buf(zio->io_abd, psize);
1644
1645 zio->io_pipeline = ZIO_INTERLOCK_PIPELINE;
1646 decode_embedded_bp_compressed(bp, data);
1647 abd_return_buf_copy(zio->io_abd, data, psize);
1648 } else {
1649 ASSERT(!BP_IS_EMBEDDED(bp));
1650 }
1651
1652 if (BP_GET_DEDUP(bp) && zio->io_child_type == ZIO_CHILD_LOGICAL)
1653 zio->io_pipeline = ZIO_DDT_READ_PIPELINE;
1654
1655 return (zio);
1656 }
1657
1658 static zio_t *
1659 zio_write_bp_init(zio_t *zio)
1660 {
1661 if (!IO_IS_ALLOCATING(zio))
1662 return (zio);
1663
1664 ASSERT(zio->io_child_type != ZIO_CHILD_DDT);
1665
1666 if (zio->io_bp_override) {
1667 blkptr_t *bp = zio->io_bp;
1668 zio_prop_t *zp = &zio->io_prop;
1669
1670 ASSERT(bp->blk_birth != zio->io_txg);
1671
1672 *bp = *zio->io_bp_override;
1673 zio->io_pipeline = ZIO_INTERLOCK_PIPELINE;
1674
1675 if (zp->zp_brtwrite)
1676 return (zio);
1677
1678 ASSERT(!BP_GET_DEDUP(zio->io_bp_override));
1679
1680 if (BP_IS_EMBEDDED(bp))
1681 return (zio);
1682
1683 /*
1684 * If we've been overridden and nopwrite is set then
1685 * set the flag accordingly to indicate that a nopwrite
1686 * has already occurred.
1687 */
1688 if (!BP_IS_HOLE(bp) && zp->zp_nopwrite) {
1689 ASSERT(!zp->zp_dedup);
1690 ASSERT3U(BP_GET_CHECKSUM(bp), ==, zp->zp_checksum);
1691 zio->io_flags |= ZIO_FLAG_NOPWRITE;
1692 return (zio);
1693 }
1694
1695 ASSERT(!zp->zp_nopwrite);
1696
1697 if (BP_IS_HOLE(bp) || !zp->zp_dedup)
1698 return (zio);
1699
1700 ASSERT((zio_checksum_table[zp->zp_checksum].ci_flags &
1701 ZCHECKSUM_FLAG_DEDUP) || zp->zp_dedup_verify);
1702
1703 if (BP_GET_CHECKSUM(bp) == zp->zp_checksum &&
1704 !zp->zp_encrypt) {
1705 BP_SET_DEDUP(bp, 1);
1706 zio->io_pipeline |= ZIO_STAGE_DDT_WRITE;
1707 return (zio);
1708 }
1709
1710 /*
1711 * We were unable to handle this as an override bp, treat
1712 * it as a regular write I/O.
1713 */
1714 zio->io_bp_override = NULL;
1715 *bp = zio->io_bp_orig;
1716 zio->io_pipeline = zio->io_orig_pipeline;
1717 }
1718
1719 return (zio);
1720 }
1721
1722 static zio_t *
1723 zio_write_compress(zio_t *zio)
1724 {
1725 spa_t *spa = zio->io_spa;
1726 zio_prop_t *zp = &zio->io_prop;
1727 enum zio_compress compress = zp->zp_compress;
1728 blkptr_t *bp = zio->io_bp;
1729 uint64_t lsize = zio->io_lsize;
1730 uint64_t psize = zio->io_size;
1731 uint32_t pass = 1;
1732
1733 /*
1734 * If our children haven't all reached the ready stage,
1735 * wait for them and then repeat this pipeline stage.
1736 */
1737 if (zio_wait_for_children(zio, ZIO_CHILD_LOGICAL_BIT |
1738 ZIO_CHILD_GANG_BIT, ZIO_WAIT_READY)) {
1739 return (NULL);
1740 }
1741
1742 if (!IO_IS_ALLOCATING(zio))
1743 return (zio);
1744
1745 if (zio->io_children_ready != NULL) {
1746 /*
1747 * Now that all our children are ready, run the callback
1748 * associated with this zio in case it wants to modify the
1749 * data to be written.
1750 */
1751 ASSERT3U(zp->zp_level, >, 0);
1752 zio->io_children_ready(zio);
1753 }
1754
1755 ASSERT(zio->io_child_type != ZIO_CHILD_DDT);
1756 ASSERT(zio->io_bp_override == NULL);
1757
1758 if (!BP_IS_HOLE(bp) && bp->blk_birth == zio->io_txg) {
1759 /*
1760 * We're rewriting an existing block, which means we're
1761 * working on behalf of spa_sync(). For spa_sync() to
1762 * converge, it must eventually be the case that we don't
1763 * have to allocate new blocks. But compression changes
1764 * the blocksize, which forces a reallocate, and makes
1765 * convergence take longer. Therefore, after the first
1766 * few passes, stop compressing to ensure convergence.
1767 */
1768 pass = spa_sync_pass(spa);
1769
1770 ASSERT(zio->io_txg == spa_syncing_txg(spa));
1771 ASSERT(zio->io_child_type == ZIO_CHILD_LOGICAL);
1772 ASSERT(!BP_GET_DEDUP(bp));
1773
1774 if (pass >= zfs_sync_pass_dont_compress)
1775 compress = ZIO_COMPRESS_OFF;
1776
1777 /* Make sure someone doesn't change their mind on overwrites */
1778 ASSERT(BP_IS_EMBEDDED(bp) || MIN(zp->zp_copies + BP_IS_GANG(bp),
1779 spa_max_replication(spa)) == BP_GET_NDVAS(bp));
1780 }
1781
1782 /* If it's a compressed write that is not raw, compress the buffer. */
1783 if (compress != ZIO_COMPRESS_OFF &&
1784 !(zio->io_flags & ZIO_FLAG_RAW_COMPRESS)) {
1785 void *cbuf = NULL;
1786 psize = zio_compress_data(compress, zio->io_abd, &cbuf, lsize,
1787 zp->zp_complevel);
1788 if (psize == 0) {
1789 compress = ZIO_COMPRESS_OFF;
1790 } else if (psize >= lsize) {
1791 compress = ZIO_COMPRESS_OFF;
1792 if (cbuf != NULL)
1793 zio_buf_free(cbuf, lsize);
1794 } else if (!zp->zp_dedup && !zp->zp_encrypt &&
1795 psize <= BPE_PAYLOAD_SIZE &&
1796 zp->zp_level == 0 && !DMU_OT_HAS_FILL(zp->zp_type) &&
1797 spa_feature_is_enabled(spa, SPA_FEATURE_EMBEDDED_DATA)) {
1798 encode_embedded_bp_compressed(bp,
1799 cbuf, compress, lsize, psize);
1800 BPE_SET_ETYPE(bp, BP_EMBEDDED_TYPE_DATA);
1801 BP_SET_TYPE(bp, zio->io_prop.zp_type);
1802 BP_SET_LEVEL(bp, zio->io_prop.zp_level);
1803 zio_buf_free(cbuf, lsize);
1804 bp->blk_birth = zio->io_txg;
1805 zio->io_pipeline = ZIO_INTERLOCK_PIPELINE;
1806 ASSERT(spa_feature_is_active(spa,
1807 SPA_FEATURE_EMBEDDED_DATA));
1808 return (zio);
1809 } else {
1810 /*
1811 * Round compressed size up to the minimum allocation
1812 * size of the smallest-ashift device, and zero the
1813 * tail. This ensures that the compressed size of the
1814 * BP (and thus compressratio property) are correct,
1815 * in that we charge for the padding used to fill out
1816 * the last sector.
1817 */
1818 size_t rounded = (size_t)zio_roundup_alloc_size(spa,
1819 psize);
1820 if (rounded >= lsize) {
1821 compress = ZIO_COMPRESS_OFF;
1822 zio_buf_free(cbuf, lsize);
1823 psize = lsize;
1824 } else {
1825 abd_t *cdata = abd_get_from_buf(cbuf, lsize);
1826 abd_take_ownership_of_buf(cdata, B_TRUE);
1827 abd_zero_off(cdata, psize, rounded - psize);
1828 psize = rounded;
1829 zio_push_transform(zio, cdata,
1830 psize, lsize, NULL);
1831 }
1832 }
1833
1834 /*
1835 * We were unable to handle this as an override bp, treat
1836 * it as a regular write I/O.
1837 */
1838 zio->io_bp_override = NULL;
1839 *bp = zio->io_bp_orig;
1840 zio->io_pipeline = zio->io_orig_pipeline;
1841
1842 } else if ((zio->io_flags & ZIO_FLAG_RAW_ENCRYPT) != 0 &&
1843 zp->zp_type == DMU_OT_DNODE) {
1844 /*
1845 * The DMU actually relies on the zio layer's compression
1846 * to free metadnode blocks that have had all contained
1847 * dnodes freed. As a result, even when doing a raw
1848 * receive, we must check whether the block can be compressed
1849 * to a hole.
1850 */
1851 psize = zio_compress_data(ZIO_COMPRESS_EMPTY,
1852 zio->io_abd, NULL, lsize, zp->zp_complevel);
1853 if (psize == 0 || psize >= lsize)
1854 compress = ZIO_COMPRESS_OFF;
1855 } else if (zio->io_flags & ZIO_FLAG_RAW_COMPRESS &&
1856 !(zio->io_flags & ZIO_FLAG_RAW_ENCRYPT)) {
1857 /*
1858 * If we are raw receiving an encrypted dataset we should not
1859 * take this codepath because it will change the on-disk block
1860 * and decryption will fail.
1861 */
1862 size_t rounded = MIN((size_t)zio_roundup_alloc_size(spa, psize),
1863 lsize);
1864
1865 if (rounded != psize) {
1866 abd_t *cdata = abd_alloc_linear(rounded, B_TRUE);
1867 abd_zero_off(cdata, psize, rounded - psize);
1868 abd_copy_off(cdata, zio->io_abd, 0, 0, psize);
1869 psize = rounded;
1870 zio_push_transform(zio, cdata,
1871 psize, rounded, NULL);
1872 }
1873 } else {
1874 ASSERT3U(psize, !=, 0);
1875 }
1876
1877 /*
1878 * The final pass of spa_sync() must be all rewrites, but the first
1879 * few passes offer a trade-off: allocating blocks defers convergence,
1880 * but newly allocated blocks are sequential, so they can be written
1881 * to disk faster. Therefore, we allow the first few passes of
1882 * spa_sync() to allocate new blocks, but force rewrites after that.
1883 * There should only be a handful of blocks after pass 1 in any case.
1884 */
1885 if (!BP_IS_HOLE(bp) && bp->blk_birth == zio->io_txg &&
1886 BP_GET_PSIZE(bp) == psize &&
1887 pass >= zfs_sync_pass_rewrite) {
1888 VERIFY3U(psize, !=, 0);
1889 enum zio_stage gang_stages = zio->io_pipeline & ZIO_GANG_STAGES;
1890
1891 zio->io_pipeline = ZIO_REWRITE_PIPELINE | gang_stages;
1892 zio->io_flags |= ZIO_FLAG_IO_REWRITE;
1893 } else {
1894 BP_ZERO(bp);
1895 zio->io_pipeline = ZIO_WRITE_PIPELINE;
1896 }
1897
1898 if (psize == 0) {
1899 if (zio->io_bp_orig.blk_birth != 0 &&
1900 spa_feature_is_active(spa, SPA_FEATURE_HOLE_BIRTH)) {
1901 BP_SET_LSIZE(bp, lsize);
1902 BP_SET_TYPE(bp, zp->zp_type);
1903 BP_SET_LEVEL(bp, zp->zp_level);
1904 BP_SET_BIRTH(bp, zio->io_txg, 0);
1905 }
1906 zio->io_pipeline = ZIO_INTERLOCK_PIPELINE;
1907 } else {
1908 ASSERT(zp->zp_checksum != ZIO_CHECKSUM_GANG_HEADER);
1909 BP_SET_LSIZE(bp, lsize);
1910 BP_SET_TYPE(bp, zp->zp_type);
1911 BP_SET_LEVEL(bp, zp->zp_level);
1912 BP_SET_PSIZE(bp, psize);
1913 BP_SET_COMPRESS(bp, compress);
1914 BP_SET_CHECKSUM(bp, zp->zp_checksum);
1915 BP_SET_DEDUP(bp, zp->zp_dedup);
1916 BP_SET_BYTEORDER(bp, ZFS_HOST_BYTEORDER);
1917 if (zp->zp_dedup) {
1918 ASSERT(zio->io_child_type == ZIO_CHILD_LOGICAL);
1919 ASSERT(!(zio->io_flags & ZIO_FLAG_IO_REWRITE));
1920 ASSERT(!zp->zp_encrypt ||
1921 DMU_OT_IS_ENCRYPTED(zp->zp_type));
1922 zio->io_pipeline = ZIO_DDT_WRITE_PIPELINE;
1923 }
1924 if (zp->zp_nopwrite) {
1925 ASSERT(zio->io_child_type == ZIO_CHILD_LOGICAL);
1926 ASSERT(!(zio->io_flags & ZIO_FLAG_IO_REWRITE));
1927 zio->io_pipeline |= ZIO_STAGE_NOP_WRITE;
1928 }
1929 }
1930 return (zio);
1931 }
1932
1933 static zio_t *
1934 zio_free_bp_init(zio_t *zio)
1935 {
1936 blkptr_t *bp = zio->io_bp;
1937
1938 if (zio->io_child_type == ZIO_CHILD_LOGICAL) {
1939 if (BP_GET_DEDUP(bp))
1940 zio->io_pipeline = ZIO_DDT_FREE_PIPELINE;
1941 }
1942
1943 ASSERT3P(zio->io_bp, ==, &zio->io_bp_copy);
1944
1945 return (zio);
1946 }
1947
1948 /*
1949 * ==========================================================================
1950 * Execute the I/O pipeline
1951 * ==========================================================================
1952 */
1953
1954 static void
1955 zio_taskq_dispatch(zio_t *zio, zio_taskq_type_t q, boolean_t cutinline)
1956 {
1957 spa_t *spa = zio->io_spa;
1958 zio_type_t t = zio->io_type;
1959 int flags = (cutinline ? TQ_FRONT : 0);
1960
1961 /*
1962 * If we're a config writer or a probe, the normal issue and
1963 * interrupt threads may all be blocked waiting for the config lock.
1964 * In this case, select the otherwise-unused taskq for ZIO_TYPE_NULL.
1965 */
1966 if (zio->io_flags & (ZIO_FLAG_CONFIG_WRITER | ZIO_FLAG_PROBE))
1967 t = ZIO_TYPE_NULL;
1968
1969 /*
1970 * A similar issue exists for the L2ARC write thread until L2ARC 2.0.
1971 */
1972 if (t == ZIO_TYPE_WRITE && zio->io_vd && zio->io_vd->vdev_aux)
1973 t = ZIO_TYPE_NULL;
1974
1975 /*
1976 * If this is a high priority I/O, then use the high priority taskq if
1977 * available.
1978 */
1979 if ((zio->io_priority == ZIO_PRIORITY_NOW ||
1980 zio->io_priority == ZIO_PRIORITY_SYNC_WRITE) &&
1981 spa->spa_zio_taskq[t][q + 1].stqs_count != 0)
1982 q++;
1983
1984 ASSERT3U(q, <, ZIO_TASKQ_TYPES);
1985
1986 /*
1987 * NB: We are assuming that the zio can only be dispatched
1988 * to a single taskq at a time. It would be a grievous error
1989 * to dispatch the zio to another taskq at the same time.
1990 */
1991 ASSERT(taskq_empty_ent(&zio->io_tqent));
1992 spa_taskq_dispatch_ent(spa, t, q, zio_execute, zio, flags,
1993 &zio->io_tqent);
1994 }
1995
1996 static boolean_t
1997 zio_taskq_member(zio_t *zio, zio_taskq_type_t q)
1998 {
1999 spa_t *spa = zio->io_spa;
2000
2001 taskq_t *tq = taskq_of_curthread();
2002
2003 for (zio_type_t t = 0; t < ZIO_TYPES; t++) {
2004 spa_taskqs_t *tqs = &spa->spa_zio_taskq[t][q];
2005 uint_t i;
2006 for (i = 0; i < tqs->stqs_count; i++) {
2007 if (tqs->stqs_taskq[i] == tq)
2008 return (B_TRUE);
2009 }
2010 }
2011
2012 return (B_FALSE);
2013 }
2014
2015 static zio_t *
2016 zio_issue_async(zio_t *zio)
2017 {
2018 zio_taskq_dispatch(zio, ZIO_TASKQ_ISSUE, B_FALSE);
2019
2020 return (NULL);
2021 }
2022
2023 void
2024 zio_interrupt(void *zio)
2025 {
2026 zio_taskq_dispatch(zio, ZIO_TASKQ_INTERRUPT, B_FALSE);
2027 }
2028
2029 void
2030 zio_delay_interrupt(zio_t *zio)
2031 {
2032 /*
2033 * The timeout_generic() function isn't defined in userspace, so
2034 * rather than trying to implement the function, the zio delay
2035 * functionality has been disabled for userspace builds.
2036 */
2037
2038 #ifdef _KERNEL
2039 /*
2040 * If io_target_timestamp is zero, then no delay has been registered
2041 * for this IO, thus jump to the end of this function and "skip" the
2042 * delay; issuing it directly to the zio layer.
2043 */
2044 if (zio->io_target_timestamp != 0) {
2045 hrtime_t now = gethrtime();
2046
2047 if (now >= zio->io_target_timestamp) {
2048 /*
2049 * This IO has already taken longer than the target
2050 * delay to complete, so we don't want to delay it
2051 * any longer; we "miss" the delay and issue it
2052 * directly to the zio layer. This is likely due to
2053 * the target latency being set to a value less than
2054 * the underlying hardware can satisfy (e.g. delay
2055 * set to 1ms, but the disks take 10ms to complete an
2056 * IO request).
2057 */
2058
2059 DTRACE_PROBE2(zio__delay__miss, zio_t *, zio,
2060 hrtime_t, now);
2061
2062 zio_interrupt(zio);
2063 } else {
2064 taskqid_t tid;
2065 hrtime_t diff = zio->io_target_timestamp - now;
2066 clock_t expire_at_tick = ddi_get_lbolt() +
2067 NSEC_TO_TICK(diff);
2068
2069 DTRACE_PROBE3(zio__delay__hit, zio_t *, zio,
2070 hrtime_t, now, hrtime_t, diff);
2071
2072 if (NSEC_TO_TICK(diff) == 0) {
2073 /* Our delay is less than a jiffy - just spin */
2074 zfs_sleep_until(zio->io_target_timestamp);
2075 zio_interrupt(zio);
2076 } else {
2077 /*
2078 * Use taskq_dispatch_delay() in the place of
2079 * OpenZFS's timeout_generic().
2080 */
2081 tid = taskq_dispatch_delay(system_taskq,
2082 zio_interrupt, zio, TQ_NOSLEEP,
2083 expire_at_tick);
2084 if (tid == TASKQID_INVALID) {
2085 /*
2086 * Couldn't allocate a task. Just
2087 * finish the zio without a delay.
2088 */
2089 zio_interrupt(zio);
2090 }
2091 }
2092 }
2093 return;
2094 }
2095 #endif
2096 DTRACE_PROBE1(zio__delay__skip, zio_t *, zio);
2097 zio_interrupt(zio);
2098 }
2099
2100 static void
2101 zio_deadman_impl(zio_t *pio, int ziodepth)
2102 {
2103 zio_t *cio, *cio_next;
2104 zio_link_t *zl = NULL;
2105 vdev_t *vd = pio->io_vd;
2106
2107 if (zio_deadman_log_all || (vd != NULL && vd->vdev_ops->vdev_op_leaf)) {
2108 vdev_queue_t *vq = vd ? &vd->vdev_queue : NULL;
2109 zbookmark_phys_t *zb = &pio->io_bookmark;
2110 uint64_t delta = gethrtime() - pio->io_timestamp;
2111 uint64_t failmode = spa_get_deadman_failmode(pio->io_spa);
2112
2113 zfs_dbgmsg("slow zio[%d]: zio=%px timestamp=%llu "
2114 "delta=%llu queued=%llu io=%llu "
2115 "path=%s "
2116 "last=%llu type=%d "
2117 "priority=%d flags=0x%llx stage=0x%x "
2118 "pipeline=0x%x pipeline-trace=0x%x "
2119 "objset=%llu object=%llu "
2120 "level=%llu blkid=%llu "
2121 "offset=%llu size=%llu "
2122 "error=%d",
2123 ziodepth, pio, pio->io_timestamp,
2124 (u_longlong_t)delta, pio->io_delta, pio->io_delay,
2125 vd ? vd->vdev_path : "NULL",
2126 vq ? vq->vq_io_complete_ts : 0, pio->io_type,
2127 pio->io_priority, (u_longlong_t)pio->io_flags,
2128 pio->io_stage, pio->io_pipeline, pio->io_pipeline_trace,
2129 (u_longlong_t)zb->zb_objset, (u_longlong_t)zb->zb_object,
2130 (u_longlong_t)zb->zb_level, (u_longlong_t)zb->zb_blkid,
2131 (u_longlong_t)pio->io_offset, (u_longlong_t)pio->io_size,
2132 pio->io_error);
2133 (void) zfs_ereport_post(FM_EREPORT_ZFS_DEADMAN,
2134 pio->io_spa, vd, zb, pio, 0);
2135
2136 if (failmode == ZIO_FAILURE_MODE_CONTINUE &&
2137 taskq_empty_ent(&pio->io_tqent)) {
2138 zio_interrupt(pio);
2139 }
2140 }
2141
2142 mutex_enter(&pio->io_lock);
2143 for (cio = zio_walk_children(pio, &zl); cio != NULL; cio = cio_next) {
2144 cio_next = zio_walk_children(pio, &zl);
2145 zio_deadman_impl(cio, ziodepth + 1);
2146 }
2147 mutex_exit(&pio->io_lock);
2148 }
2149
2150 /*
2151 * Log the critical information describing this zio and all of its children
2152 * using the zfs_dbgmsg() interface then post deadman event for the ZED.
2153 */
2154 void
2155 zio_deadman(zio_t *pio, const char *tag)
2156 {
2157 spa_t *spa = pio->io_spa;
2158 char *name = spa_name(spa);
2159
2160 if (!zfs_deadman_enabled || spa_suspended(spa))
2161 return;
2162
2163 zio_deadman_impl(pio, 0);
2164
2165 switch (spa_get_deadman_failmode(spa)) {
2166 case ZIO_FAILURE_MODE_WAIT:
2167 zfs_dbgmsg("%s waiting for hung I/O to pool '%s'", tag, name);
2168 break;
2169
2170 case ZIO_FAILURE_MODE_CONTINUE:
2171 zfs_dbgmsg("%s restarting hung I/O for pool '%s'", tag, name);
2172 break;
2173
2174 case ZIO_FAILURE_MODE_PANIC:
2175 fm_panic("%s determined I/O to pool '%s' is hung.", tag, name);
2176 break;
2177 }
2178 }
2179
2180 /*
2181 * Execute the I/O pipeline until one of the following occurs:
2182 * (1) the I/O completes; (2) the pipeline stalls waiting for
2183 * dependent child I/Os; (3) the I/O issues, so we're waiting
2184 * for an I/O completion interrupt; (4) the I/O is delegated by
2185 * vdev-level caching or aggregation; (5) the I/O is deferred
2186 * due to vdev-level queueing; (6) the I/O is handed off to
2187 * another thread. In all cases, the pipeline stops whenever
2188 * there's no CPU work; it never burns a thread in cv_wait_io().
2189 *
2190 * There's no locking on io_stage because there's no legitimate way
2191 * for multiple threads to be attempting to process the same I/O.
2192 */
2193 static zio_pipe_stage_t *zio_pipeline[];
2194
2195 /*
2196 * zio_execute() is a wrapper around the static function
2197 * __zio_execute() so that we can force __zio_execute() to be
2198 * inlined. This reduces stack overhead which is important
2199 * because __zio_execute() is called recursively in several zio
2200 * code paths. zio_execute() itself cannot be inlined because
2201 * it is externally visible.
2202 */
2203 void
2204 zio_execute(void *zio)
2205 {
2206 fstrans_cookie_t cookie;
2207
2208 cookie = spl_fstrans_mark();
2209 __zio_execute(zio);
2210 spl_fstrans_unmark(cookie);
2211 }
2212
2213 /*
2214 * Used to determine if in the current context the stack is sized large
2215 * enough to allow zio_execute() to be called recursively. A minimum
2216 * stack size of 16K is required to avoid needing to re-dispatch the zio.
2217 */
2218 static boolean_t
2219 zio_execute_stack_check(zio_t *zio)
2220 {
2221 #if !defined(HAVE_LARGE_STACKS)
2222 dsl_pool_t *dp = spa_get_dsl(zio->io_spa);
2223
2224 /* Executing in txg_sync_thread() context. */
2225 if (dp && curthread == dp->dp_tx.tx_sync_thread)
2226 return (B_TRUE);
2227
2228 /* Pool initialization outside of zio_taskq context. */
2229 if (dp && spa_is_initializing(dp->dp_spa) &&
2230 !zio_taskq_member(zio, ZIO_TASKQ_ISSUE) &&
2231 !zio_taskq_member(zio, ZIO_TASKQ_ISSUE_HIGH))
2232 return (B_TRUE);
2233 #else
2234 (void) zio;
2235 #endif /* HAVE_LARGE_STACKS */
2236
2237 return (B_FALSE);
2238 }
2239
2240 __attribute__((always_inline))
2241 static inline void
2242 __zio_execute(zio_t *zio)
2243 {
2244 ASSERT3U(zio->io_queued_timestamp, >, 0);
2245
2246 while (zio->io_stage < ZIO_STAGE_DONE) {
2247 enum zio_stage pipeline = zio->io_pipeline;
2248 enum zio_stage stage = zio->io_stage;
2249
2250 zio->io_executor = curthread;
2251
2252 ASSERT(!MUTEX_HELD(&zio->io_lock));
2253 ASSERT(ISP2(stage));
2254 ASSERT(zio->io_stall == NULL);
2255
2256 do {
2257 stage <<= 1;
2258 } while ((stage & pipeline) == 0);
2259
2260 ASSERT(stage <= ZIO_STAGE_DONE);
2261
2262 /*
2263 * If we are in interrupt context and this pipeline stage
2264 * will grab a config lock that is held across I/O,
2265 * or may wait for an I/O that needs an interrupt thread
2266 * to complete, issue async to avoid deadlock.
2267 *
2268 * For VDEV_IO_START, we cut in line so that the io will
2269 * be sent to disk promptly.
2270 */
2271 if ((stage & ZIO_BLOCKING_STAGES) && zio->io_vd == NULL &&
2272 zio_taskq_member(zio, ZIO_TASKQ_INTERRUPT)) {
2273 boolean_t cut = (stage == ZIO_STAGE_VDEV_IO_START) ?
2274 zio_requeue_io_start_cut_in_line : B_FALSE;
2275 zio_taskq_dispatch(zio, ZIO_TASKQ_ISSUE, cut);
2276 return;
2277 }
2278
2279 /*
2280 * If the current context doesn't have large enough stacks
2281 * the zio must be issued asynchronously to prevent overflow.
2282 */
2283 if (zio_execute_stack_check(zio)) {
2284 boolean_t cut = (stage == ZIO_STAGE_VDEV_IO_START) ?
2285 zio_requeue_io_start_cut_in_line : B_FALSE;
2286 zio_taskq_dispatch(zio, ZIO_TASKQ_ISSUE, cut);
2287 return;
2288 }
2289
2290 zio->io_stage = stage;
2291 zio->io_pipeline_trace |= zio->io_stage;
2292
2293 /*
2294 * The zio pipeline stage returns the next zio to execute
2295 * (typically the same as this one), or NULL if we should
2296 * stop.
2297 */
2298 zio = zio_pipeline[highbit64(stage) - 1](zio);
2299
2300 if (zio == NULL)
2301 return;
2302 }
2303 }
2304
2305
2306 /*
2307 * ==========================================================================
2308 * Initiate I/O, either sync or async
2309 * ==========================================================================
2310 */
2311 int
2312 zio_wait(zio_t *zio)
2313 {
2314 /*
2315 * Some routines, like zio_free_sync(), may return a NULL zio
2316 * to avoid the performance overhead of creating and then destroying
2317 * an unneeded zio. For the callers' simplicity, we accept a NULL
2318 * zio and ignore it.
2319 */
2320 if (zio == NULL)
2321 return (0);
2322
2323 long timeout = MSEC_TO_TICK(zfs_deadman_ziotime_ms);
2324 int error;
2325
2326 ASSERT3S(zio->io_stage, ==, ZIO_STAGE_OPEN);
2327 ASSERT3P(zio->io_executor, ==, NULL);
2328
2329 zio->io_waiter = curthread;
2330 ASSERT0(zio->io_queued_timestamp);
2331 zio->io_queued_timestamp = gethrtime();
2332
2333 __zio_execute(zio);
2334
2335 mutex_enter(&zio->io_lock);
2336 while (zio->io_executor != NULL) {
2337 error = cv_timedwait_io(&zio->io_cv, &zio->io_lock,
2338 ddi_get_lbolt() + timeout);
2339
2340 if (zfs_deadman_enabled && error == -1 &&
2341 gethrtime() - zio->io_queued_timestamp >
2342 spa_deadman_ziotime(zio->io_spa)) {
2343 mutex_exit(&zio->io_lock);
2344 timeout = MSEC_TO_TICK(zfs_deadman_checktime_ms);
2345 zio_deadman(zio, FTAG);
2346 mutex_enter(&zio->io_lock);
2347 }
2348 }
2349 mutex_exit(&zio->io_lock);
2350
2351 error = zio->io_error;
2352 zio_destroy(zio);
2353
2354 return (error);
2355 }
2356
2357 void
2358 zio_nowait(zio_t *zio)
2359 {
2360 /*
2361 * See comment in zio_wait().
2362 */
2363 if (zio == NULL)
2364 return;
2365
2366 ASSERT3P(zio->io_executor, ==, NULL);
2367
2368 if (zio->io_child_type == ZIO_CHILD_LOGICAL &&
2369 list_is_empty(&zio->io_parent_list)) {
2370 zio_t *pio;
2371
2372 /*
2373 * This is a logical async I/O with no parent to wait for it.
2374 * We add it to the spa_async_root_zio "Godfather" I/O which
2375 * will ensure they complete prior to unloading the pool.
2376 */
2377 spa_t *spa = zio->io_spa;
2378 pio = spa->spa_async_zio_root[CPU_SEQID_UNSTABLE];
2379
2380 zio_add_child(pio, zio);
2381 }
2382
2383 ASSERT0(zio->io_queued_timestamp);
2384 zio->io_queued_timestamp = gethrtime();
2385 __zio_execute(zio);
2386 }
2387
2388 /*
2389 * ==========================================================================
2390 * Reexecute, cancel, or suspend/resume failed I/O
2391 * ==========================================================================
2392 */
2393
2394 static void
2395 zio_reexecute(void *arg)
2396 {
2397 zio_t *pio = arg;
2398 zio_t *cio, *cio_next;
2399
2400 ASSERT(pio->io_child_type == ZIO_CHILD_LOGICAL);
2401 ASSERT(pio->io_orig_stage == ZIO_STAGE_OPEN);
2402 ASSERT(pio->io_gang_leader == NULL);
2403 ASSERT(pio->io_gang_tree == NULL);
2404
2405 pio->io_flags = pio->io_orig_flags;
2406 pio->io_stage = pio->io_orig_stage;
2407 pio->io_pipeline = pio->io_orig_pipeline;
2408 pio->io_reexecute = 0;
2409 pio->io_flags |= ZIO_FLAG_REEXECUTED;
2410 pio->io_pipeline_trace = 0;
2411 pio->io_error = 0;
2412 for (int w = 0; w < ZIO_WAIT_TYPES; w++)
2413 pio->io_state[w] = 0;
2414 for (int c = 0; c < ZIO_CHILD_TYPES; c++)
2415 pio->io_child_error[c] = 0;
2416
2417 if (IO_IS_ALLOCATING(pio))
2418 BP_ZERO(pio->io_bp);
2419
2420 /*
2421 * As we reexecute pio's children, new children could be created.
2422 * New children go to the head of pio's io_child_list, however,
2423 * so we will (correctly) not reexecute them. The key is that
2424 * the remainder of pio's io_child_list, from 'cio_next' onward,
2425 * cannot be affected by any side effects of reexecuting 'cio'.
2426 */
2427 zio_link_t *zl = NULL;
2428 mutex_enter(&pio->io_lock);
2429 for (cio = zio_walk_children(pio, &zl); cio != NULL; cio = cio_next) {
2430 cio_next = zio_walk_children(pio, &zl);
2431 for (int w = 0; w < ZIO_WAIT_TYPES; w++)
2432 pio->io_children[cio->io_child_type][w]++;
2433 mutex_exit(&pio->io_lock);
2434 zio_reexecute(cio);
2435 mutex_enter(&pio->io_lock);
2436 }
2437 mutex_exit(&pio->io_lock);
2438
2439 /*
2440 * Now that all children have been reexecuted, execute the parent.
2441 * We don't reexecute "The Godfather" I/O here as it's the
2442 * responsibility of the caller to wait on it.
2443 */
2444 if (!(pio->io_flags & ZIO_FLAG_GODFATHER)) {
2445 pio->io_queued_timestamp = gethrtime();
2446 __zio_execute(pio);
2447 }
2448 }
2449
2450 void
2451 zio_suspend(spa_t *spa, zio_t *zio, zio_suspend_reason_t reason)
2452 {
2453 if (spa_get_failmode(spa) == ZIO_FAILURE_MODE_PANIC)
2454 fm_panic("Pool '%s' has encountered an uncorrectable I/O "
2455 "failure and the failure mode property for this pool "
2456 "is set to panic.", spa_name(spa));
2457
2458 cmn_err(CE_WARN, "Pool '%s' has encountered an uncorrectable I/O "
2459 "failure and has been suspended.\n", spa_name(spa));
2460
2461 (void) zfs_ereport_post(FM_EREPORT_ZFS_IO_FAILURE, spa, NULL,
2462 NULL, NULL, 0);
2463
2464 mutex_enter(&spa->spa_suspend_lock);
2465
2466 if (spa->spa_suspend_zio_root == NULL)
2467 spa->spa_suspend_zio_root = zio_root(spa, NULL, NULL,
2468 ZIO_FLAG_CANFAIL | ZIO_FLAG_SPECULATIVE |
2469 ZIO_FLAG_GODFATHER);
2470
2471 spa->spa_suspended = reason;
2472
2473 if (zio != NULL) {
2474 ASSERT(!(zio->io_flags & ZIO_FLAG_GODFATHER));
2475 ASSERT(zio != spa->spa_suspend_zio_root);
2476 ASSERT(zio->io_child_type == ZIO_CHILD_LOGICAL);
2477 ASSERT(zio_unique_parent(zio) == NULL);
2478 ASSERT(zio->io_stage == ZIO_STAGE_DONE);
2479 zio_add_child(spa->spa_suspend_zio_root, zio);
2480 }
2481
2482 mutex_exit(&spa->spa_suspend_lock);
2483 }
2484
2485 int
2486 zio_resume(spa_t *spa)
2487 {
2488 zio_t *pio;
2489
2490 /*
2491 * Reexecute all previously suspended i/o.
2492 */
2493 mutex_enter(&spa->spa_suspend_lock);
2494 spa->spa_suspended = ZIO_SUSPEND_NONE;
2495 cv_broadcast(&spa->spa_suspend_cv);
2496 pio = spa->spa_suspend_zio_root;
2497 spa->spa_suspend_zio_root = NULL;
2498 mutex_exit(&spa->spa_suspend_lock);
2499
2500 if (pio == NULL)
2501 return (0);
2502
2503 zio_reexecute(pio);
2504 return (zio_wait(pio));
2505 }
2506
2507 void
2508 zio_resume_wait(spa_t *spa)
2509 {
2510 mutex_enter(&spa->spa_suspend_lock);
2511 while (spa_suspended(spa))
2512 cv_wait(&spa->spa_suspend_cv, &spa->spa_suspend_lock);
2513 mutex_exit(&spa->spa_suspend_lock);
2514 }
2515
2516 /*
2517 * ==========================================================================
2518 * Gang blocks.
2519 *
2520 * A gang block is a collection of small blocks that looks to the DMU
2521 * like one large block. When zio_dva_allocate() cannot find a block
2522 * of the requested size, due to either severe fragmentation or the pool
2523 * being nearly full, it calls zio_write_gang_block() to construct the
2524 * block from smaller fragments.
2525 *
2526 * A gang block consists of a gang header (zio_gbh_phys_t) and up to
2527 * three (SPA_GBH_NBLKPTRS) gang members. The gang header is just like
2528 * an indirect block: it's an array of block pointers. It consumes
2529 * only one sector and hence is allocatable regardless of fragmentation.
2530 * The gang header's bps point to its gang members, which hold the data.
2531 *
2532 * Gang blocks are self-checksumming, using the bp's <vdev, offset, txg>
2533 * as the verifier to ensure uniqueness of the SHA256 checksum.
2534 * Critically, the gang block bp's blk_cksum is the checksum of the data,
2535 * not the gang header. This ensures that data block signatures (needed for
2536 * deduplication) are independent of how the block is physically stored.
2537 *
2538 * Gang blocks can be nested: a gang member may itself be a gang block.
2539 * Thus every gang block is a tree in which root and all interior nodes are
2540 * gang headers, and the leaves are normal blocks that contain user data.
2541 * The root of the gang tree is called the gang leader.
2542 *
2543 * To perform any operation (read, rewrite, free, claim) on a gang block,
2544 * zio_gang_assemble() first assembles the gang tree (minus data leaves)
2545 * in the io_gang_tree field of the original logical i/o by recursively
2546 * reading the gang leader and all gang headers below it. This yields
2547 * an in-core tree containing the contents of every gang header and the
2548 * bps for every constituent of the gang block.
2549 *
2550 * With the gang tree now assembled, zio_gang_issue() just walks the gang tree
2551 * and invokes a callback on each bp. To free a gang block, zio_gang_issue()
2552 * calls zio_free_gang() -- a trivial wrapper around zio_free() -- for each bp.
2553 * zio_claim_gang() provides a similarly trivial wrapper for zio_claim().
2554 * zio_read_gang() is a wrapper around zio_read() that omits reading gang
2555 * headers, since we already have those in io_gang_tree. zio_rewrite_gang()
2556 * performs a zio_rewrite() of the data or, for gang headers, a zio_rewrite()
2557 * of the gang header plus zio_checksum_compute() of the data to update the
2558 * gang header's blk_cksum as described above.
2559 *
2560 * The two-phase assemble/issue model solves the problem of partial failure --
2561 * what if you'd freed part of a gang block but then couldn't read the
2562 * gang header for another part? Assembling the entire gang tree first
2563 * ensures that all the necessary gang header I/O has succeeded before
2564 * starting the actual work of free, claim, or write. Once the gang tree
2565 * is assembled, free and claim are in-memory operations that cannot fail.
2566 *
2567 * In the event that a gang write fails, zio_dva_unallocate() walks the
2568 * gang tree to immediately free (i.e. insert back into the space map)
2569 * everything we've allocated. This ensures that we don't get ENOSPC
2570 * errors during repeated suspend/resume cycles due to a flaky device.
2571 *
2572 * Gang rewrites only happen during sync-to-convergence. If we can't assemble
2573 * the gang tree, we won't modify the block, so we can safely defer the free
2574 * (knowing that the block is still intact). If we *can* assemble the gang
2575 * tree, then even if some of the rewrites fail, zio_dva_unallocate() will free
2576 * each constituent bp and we can allocate a new block on the next sync pass.
2577 *
2578 * In all cases, the gang tree allows complete recovery from partial failure.
2579 * ==========================================================================
2580 */
2581
2582 static void
2583 zio_gang_issue_func_done(zio_t *zio)
2584 {
2585 abd_free(zio->io_abd);
2586 }
2587
2588 static zio_t *
2589 zio_read_gang(zio_t *pio, blkptr_t *bp, zio_gang_node_t *gn, abd_t *data,
2590 uint64_t offset)
2591 {
2592 if (gn != NULL)
2593 return (pio);
2594
2595 return (zio_read(pio, pio->io_spa, bp, abd_get_offset(data, offset),
2596 BP_GET_PSIZE(bp), zio_gang_issue_func_done,
2597 NULL, pio->io_priority, ZIO_GANG_CHILD_FLAGS(pio),
2598 &pio->io_bookmark));
2599 }
2600
2601 static zio_t *
2602 zio_rewrite_gang(zio_t *pio, blkptr_t *bp, zio_gang_node_t *gn, abd_t *data,
2603 uint64_t offset)
2604 {
2605 zio_t *zio;
2606
2607 if (gn != NULL) {
2608 abd_t *gbh_abd =
2609 abd_get_from_buf(gn->gn_gbh, SPA_GANGBLOCKSIZE);
2610 zio = zio_rewrite(pio, pio->io_spa, pio->io_txg, bp,
2611 gbh_abd, SPA_GANGBLOCKSIZE, zio_gang_issue_func_done, NULL,
2612 pio->io_priority, ZIO_GANG_CHILD_FLAGS(pio),
2613 &pio->io_bookmark);
2614 /*
2615 * As we rewrite each gang header, the pipeline will compute
2616 * a new gang block header checksum for it; but no one will
2617 * compute a new data checksum, so we do that here. The one
2618 * exception is the gang leader: the pipeline already computed
2619 * its data checksum because that stage precedes gang assembly.
2620 * (Presently, nothing actually uses interior data checksums;
2621 * this is just good hygiene.)
2622 */
2623 if (gn != pio->io_gang_leader->io_gang_tree) {
2624 abd_t *buf = abd_get_offset(data, offset);
2625
2626 zio_checksum_compute(zio, BP_GET_CHECKSUM(bp),
2627 buf, BP_GET_PSIZE(bp));
2628
2629 abd_free(buf);
2630 }
2631 /*
2632 * If we are here to damage data for testing purposes,
2633 * leave the GBH alone so that we can detect the damage.
2634 */
2635 if (pio->io_gang_leader->io_flags & ZIO_FLAG_INDUCE_DAMAGE)
2636 zio->io_pipeline &= ~ZIO_VDEV_IO_STAGES;
2637 } else {
2638 zio = zio_rewrite(pio, pio->io_spa, pio->io_txg, bp,
2639 abd_get_offset(data, offset), BP_GET_PSIZE(bp),
2640 zio_gang_issue_func_done, NULL, pio->io_priority,
2641 ZIO_GANG_CHILD_FLAGS(pio), &pio->io_bookmark);
2642 }
2643
2644 return (zio);
2645 }
2646
2647 static zio_t *
2648 zio_free_gang(zio_t *pio, blkptr_t *bp, zio_gang_node_t *gn, abd_t *data,
2649 uint64_t offset)
2650 {
2651 (void) gn, (void) data, (void) offset;
2652
2653 zio_t *zio = zio_free_sync(pio, pio->io_spa, pio->io_txg, bp,
2654 ZIO_GANG_CHILD_FLAGS(pio));
2655 if (zio == NULL) {
2656 zio = zio_null(pio, pio->io_spa,
2657 NULL, NULL, NULL, ZIO_GANG_CHILD_FLAGS(pio));
2658 }
2659 return (zio);
2660 }
2661
2662 static zio_t *
2663 zio_claim_gang(zio_t *pio, blkptr_t *bp, zio_gang_node_t *gn, abd_t *data,
2664 uint64_t offset)
2665 {
2666 (void) gn, (void) data, (void) offset;
2667 return (zio_claim(pio, pio->io_spa, pio->io_txg, bp,
2668 NULL, NULL, ZIO_GANG_CHILD_FLAGS(pio)));
2669 }
2670
2671 static zio_gang_issue_func_t *zio_gang_issue_func[ZIO_TYPES] = {
2672 NULL,
2673 zio_read_gang,
2674 zio_rewrite_gang,
2675 zio_free_gang,
2676 zio_claim_gang,
2677 NULL
2678 };
2679
2680 static void zio_gang_tree_assemble_done(zio_t *zio);
2681
2682 static zio_gang_node_t *
2683 zio_gang_node_alloc(zio_gang_node_t **gnpp)
2684 {
2685 zio_gang_node_t *gn;
2686
2687 ASSERT(*gnpp == NULL);
2688
2689 gn = kmem_zalloc(sizeof (*gn), KM_SLEEP);
2690 gn->gn_gbh = zio_buf_alloc(SPA_GANGBLOCKSIZE);
2691 *gnpp = gn;
2692
2693 return (gn);
2694 }
2695
2696 static void
2697 zio_gang_node_free(zio_gang_node_t **gnpp)
2698 {
2699 zio_gang_node_t *gn = *gnpp;
2700
2701 for (int g = 0; g < SPA_GBH_NBLKPTRS; g++)
2702 ASSERT(gn->gn_child[g] == NULL);
2703
2704 zio_buf_free(gn->gn_gbh, SPA_GANGBLOCKSIZE);
2705 kmem_free(gn, sizeof (*gn));
2706 *gnpp = NULL;
2707 }
2708
2709 static void
2710 zio_gang_tree_free(zio_gang_node_t **gnpp)
2711 {
2712 zio_gang_node_t *gn = *gnpp;
2713
2714 if (gn == NULL)
2715 return;
2716
2717 for (int g = 0; g < SPA_GBH_NBLKPTRS; g++)
2718 zio_gang_tree_free(&gn->gn_child[g]);
2719
2720 zio_gang_node_free(gnpp);
2721 }
2722
2723 static void
2724 zio_gang_tree_assemble(zio_t *gio, blkptr_t *bp, zio_gang_node_t **gnpp)
2725 {
2726 zio_gang_node_t *gn = zio_gang_node_alloc(gnpp);
2727 abd_t *gbh_abd = abd_get_from_buf(gn->gn_gbh, SPA_GANGBLOCKSIZE);
2728
2729 ASSERT(gio->io_gang_leader == gio);
2730 ASSERT(BP_IS_GANG(bp));
2731
2732 zio_nowait(zio_read(gio, gio->io_spa, bp, gbh_abd, SPA_GANGBLOCKSIZE,
2733 zio_gang_tree_assemble_done, gn, gio->io_priority,
2734 ZIO_GANG_CHILD_FLAGS(gio), &gio->io_bookmark));
2735 }
2736
2737 static void
2738 zio_gang_tree_assemble_done(zio_t *zio)
2739 {
2740 zio_t *gio = zio->io_gang_leader;
2741 zio_gang_node_t *gn = zio->io_private;
2742 blkptr_t *bp = zio->io_bp;
2743
2744 ASSERT(gio == zio_unique_parent(zio));
2745 ASSERT(list_is_empty(&zio->io_child_list));
2746
2747 if (zio->io_error)
2748 return;
2749
2750 /* this ABD was created from a linear buf in zio_gang_tree_assemble */
2751 if (BP_SHOULD_BYTESWAP(bp))
2752 byteswap_uint64_array(abd_to_buf(zio->io_abd), zio->io_size);
2753
2754 ASSERT3P(abd_to_buf(zio->io_abd), ==, gn->gn_gbh);
2755 ASSERT(zio->io_size == SPA_GANGBLOCKSIZE);
2756 ASSERT(gn->gn_gbh->zg_tail.zec_magic == ZEC_MAGIC);
2757
2758 abd_free(zio->io_abd);
2759
2760 for (int g = 0; g < SPA_GBH_NBLKPTRS; g++) {
2761 blkptr_t *gbp = &gn->gn_gbh->zg_blkptr[g];
2762 if (!BP_IS_GANG(gbp))
2763 continue;
2764 zio_gang_tree_assemble(gio, gbp, &gn->gn_child[g]);
2765 }
2766 }
2767
2768 static void
2769 zio_gang_tree_issue(zio_t *pio, zio_gang_node_t *gn, blkptr_t *bp, abd_t *data,
2770 uint64_t offset)
2771 {
2772 zio_t *gio = pio->io_gang_leader;
2773 zio_t *zio;
2774
2775 ASSERT(BP_IS_GANG(bp) == !!gn);
2776 ASSERT(BP_GET_CHECKSUM(bp) == BP_GET_CHECKSUM(gio->io_bp));
2777 ASSERT(BP_GET_LSIZE(bp) == BP_GET_PSIZE(bp) || gn == gio->io_gang_tree);
2778
2779 /*
2780 * If you're a gang header, your data is in gn->gn_gbh.
2781 * If you're a gang member, your data is in 'data' and gn == NULL.
2782 */
2783 zio = zio_gang_issue_func[gio->io_type](pio, bp, gn, data, offset);
2784
2785 if (gn != NULL) {
2786 ASSERT(gn->gn_gbh->zg_tail.zec_magic == ZEC_MAGIC);
2787
2788 for (int g = 0; g < SPA_GBH_NBLKPTRS; g++) {
2789 blkptr_t *gbp = &gn->gn_gbh->zg_blkptr[g];
2790 if (BP_IS_HOLE(gbp))
2791 continue;
2792 zio_gang_tree_issue(zio, gn->gn_child[g], gbp, data,
2793 offset);
2794 offset += BP_GET_PSIZE(gbp);
2795 }
2796 }
2797
2798 if (gn == gio->io_gang_tree)
2799 ASSERT3U(gio->io_size, ==, offset);
2800
2801 if (zio != pio)
2802 zio_nowait(zio);
2803 }
2804
2805 static zio_t *
2806 zio_gang_assemble(zio_t *zio)
2807 {
2808 blkptr_t *bp = zio->io_bp;
2809
2810 ASSERT(BP_IS_GANG(bp) && zio->io_gang_leader == NULL);
2811 ASSERT(zio->io_child_type > ZIO_CHILD_GANG);
2812
2813 zio->io_gang_leader = zio;
2814
2815 zio_gang_tree_assemble(zio, bp, &zio->io_gang_tree);
2816
2817 return (zio);
2818 }
2819
2820 static zio_t *
2821 zio_gang_issue(zio_t *zio)
2822 {
2823 blkptr_t *bp = zio->io_bp;
2824
2825 if (zio_wait_for_children(zio, ZIO_CHILD_GANG_BIT, ZIO_WAIT_DONE)) {
2826 return (NULL);
2827 }
2828
2829 ASSERT(BP_IS_GANG(bp) && zio->io_gang_leader == zio);
2830 ASSERT(zio->io_child_type > ZIO_CHILD_GANG);
2831
2832 if (zio->io_child_error[ZIO_CHILD_GANG] == 0)
2833 zio_gang_tree_issue(zio, zio->io_gang_tree, bp, zio->io_abd,
2834 0);
2835 else
2836 zio_gang_tree_free(&zio->io_gang_tree);
2837
2838 zio->io_pipeline = ZIO_INTERLOCK_PIPELINE;
2839
2840 return (zio);
2841 }
2842
2843 static void
2844 zio_write_gang_member_ready(zio_t *zio)
2845 {
2846 zio_t *pio = zio_unique_parent(zio);
2847 dva_t *cdva = zio->io_bp->blk_dva;
2848 dva_t *pdva = pio->io_bp->blk_dva;
2849 uint64_t asize;
2850 zio_t *gio __maybe_unused = zio->io_gang_leader;
2851
2852 if (BP_IS_HOLE(zio->io_bp))
2853 return;
2854
2855 ASSERT(BP_IS_HOLE(&zio->io_bp_orig));
2856
2857 ASSERT(zio->io_child_type == ZIO_CHILD_GANG);
2858 ASSERT3U(zio->io_prop.zp_copies, ==, gio->io_prop.zp_copies);
2859 ASSERT3U(zio->io_prop.zp_copies, <=, BP_GET_NDVAS(zio->io_bp));
2860 ASSERT3U(pio->io_prop.zp_copies, <=, BP_GET_NDVAS(pio->io_bp));
2861 VERIFY3U(BP_GET_NDVAS(zio->io_bp), <=, BP_GET_NDVAS(pio->io_bp));
2862
2863 mutex_enter(&pio->io_lock);
2864 for (int d = 0; d < BP_GET_NDVAS(zio->io_bp); d++) {
2865 ASSERT(DVA_GET_GANG(&pdva[d]));
2866 asize = DVA_GET_ASIZE(&pdva[d]);
2867 asize += DVA_GET_ASIZE(&cdva[d]);
2868 DVA_SET_ASIZE(&pdva[d], asize);
2869 }
2870 mutex_exit(&pio->io_lock);
2871 }
2872
2873 static void
2874 zio_write_gang_done(zio_t *zio)
2875 {
2876 /*
2877 * The io_abd field will be NULL for a zio with no data. The io_flags
2878 * will initially have the ZIO_FLAG_NODATA bit flag set, but we can't
2879 * check for it here as it is cleared in zio_ready.
2880 */
2881 if (zio->io_abd != NULL)
2882 abd_free(zio->io_abd);
2883 }
2884
2885 static zio_t *
2886 zio_write_gang_block(zio_t *pio, metaslab_class_t *mc)
2887 {
2888 spa_t *spa = pio->io_spa;
2889 blkptr_t *bp = pio->io_bp;
2890 zio_t *gio = pio->io_gang_leader;
2891 zio_t *zio;
2892 zio_gang_node_t *gn, **gnpp;
2893 zio_gbh_phys_t *gbh;
2894 abd_t *gbh_abd;
2895 uint64_t txg = pio->io_txg;
2896 uint64_t resid = pio->io_size;
2897 uint64_t lsize;
2898 int copies = gio->io_prop.zp_copies;
2899 zio_prop_t zp;
2900 int error;
2901 boolean_t has_data = !(pio->io_flags & ZIO_FLAG_NODATA);
2902
2903 /*
2904 * If one copy was requested, store 2 copies of the GBH, so that we
2905 * can still traverse all the data (e.g. to free or scrub) even if a
2906 * block is damaged. Note that we can't store 3 copies of the GBH in
2907 * all cases, e.g. with encryption, which uses DVA[2] for the IV+salt.
2908 */
2909 int gbh_copies = copies;
2910 if (gbh_copies == 1) {
2911 gbh_copies = MIN(2, spa_max_replication(spa));
2912 }
2913
2914 int flags = METASLAB_HINTBP_FAVOR | METASLAB_GANG_HEADER;
2915 if (pio->io_flags & ZIO_FLAG_IO_ALLOCATING) {
2916 ASSERT(pio->io_priority == ZIO_PRIORITY_ASYNC_WRITE);
2917 ASSERT(has_data);
2918
2919 flags |= METASLAB_ASYNC_ALLOC;
2920 VERIFY(zfs_refcount_held(&mc->mc_allocator[pio->io_allocator].
2921 mca_alloc_slots, pio));
2922
2923 /*
2924 * The logical zio has already placed a reservation for
2925 * 'copies' allocation slots but gang blocks may require
2926 * additional copies. These additional copies
2927 * (i.e. gbh_copies - copies) are guaranteed to succeed
2928 * since metaslab_class_throttle_reserve() always allows
2929 * additional reservations for gang blocks.
2930 */
2931 VERIFY(metaslab_class_throttle_reserve(mc, gbh_copies - copies,
2932 pio->io_allocator, pio, flags));
2933 }
2934
2935 error = metaslab_alloc(spa, mc, SPA_GANGBLOCKSIZE,
2936 bp, gbh_copies, txg, pio == gio ? NULL : gio->io_bp, flags,
2937 &pio->io_alloc_list, pio, pio->io_allocator);
2938 if (error) {
2939 if (pio->io_flags & ZIO_FLAG_IO_ALLOCATING) {
2940 ASSERT(pio->io_priority == ZIO_PRIORITY_ASYNC_WRITE);
2941 ASSERT(has_data);
2942
2943 /*
2944 * If we failed to allocate the gang block header then
2945 * we remove any additional allocation reservations that
2946 * we placed here. The original reservation will
2947 * be removed when the logical I/O goes to the ready
2948 * stage.
2949 */
2950 metaslab_class_throttle_unreserve(mc,
2951 gbh_copies - copies, pio->io_allocator, pio);
2952 }
2953
2954 pio->io_error = error;
2955 return (pio);
2956 }
2957
2958 if (pio == gio) {
2959 gnpp = &gio->io_gang_tree;
2960 } else {
2961 gnpp = pio->io_private;
2962 ASSERT(pio->io_ready == zio_write_gang_member_ready);
2963 }
2964
2965 gn = zio_gang_node_alloc(gnpp);
2966 gbh = gn->gn_gbh;
2967 memset(gbh, 0, SPA_GANGBLOCKSIZE);
2968 gbh_abd = abd_get_from_buf(gbh, SPA_GANGBLOCKSIZE);
2969
2970 /*
2971 * Create the gang header.
2972 */
2973 zio = zio_rewrite(pio, spa, txg, bp, gbh_abd, SPA_GANGBLOCKSIZE,
2974 zio_write_gang_done, NULL, pio->io_priority,
2975 ZIO_GANG_CHILD_FLAGS(pio), &pio->io_bookmark);
2976
2977 /*
2978 * Create and nowait the gang children.
2979 */
2980 for (int g = 0; resid != 0; resid -= lsize, g++) {
2981 lsize = P2ROUNDUP(resid / (SPA_GBH_NBLKPTRS - g),
2982 SPA_MINBLOCKSIZE);
2983 ASSERT(lsize >= SPA_MINBLOCKSIZE && lsize <= resid);
2984
2985 zp.zp_checksum = gio->io_prop.zp_checksum;
2986 zp.zp_compress = ZIO_COMPRESS_OFF;
2987 zp.zp_complevel = gio->io_prop.zp_complevel;
2988 zp.zp_type = DMU_OT_NONE;
2989 zp.zp_level = 0;
2990 zp.zp_copies = gio->io_prop.zp_copies;
2991 zp.zp_dedup = B_FALSE;
2992 zp.zp_dedup_verify = B_FALSE;
2993 zp.zp_nopwrite = B_FALSE;
2994 zp.zp_encrypt = gio->io_prop.zp_encrypt;
2995 zp.zp_byteorder = gio->io_prop.zp_byteorder;
2996 memset(zp.zp_salt, 0, ZIO_DATA_SALT_LEN);
2997 memset(zp.zp_iv, 0, ZIO_DATA_IV_LEN);
2998 memset(zp.zp_mac, 0, ZIO_DATA_MAC_LEN);
2999
3000 zio_t *cio = zio_write(zio, spa, txg, &gbh->zg_blkptr[g],
3001 has_data ? abd_get_offset(pio->io_abd, pio->io_size -
3002 resid) : NULL, lsize, lsize, &zp,
3003 zio_write_gang_member_ready, NULL,
3004 zio_write_gang_done, &gn->gn_child[g], pio->io_priority,
3005 ZIO_GANG_CHILD_FLAGS(pio), &pio->io_bookmark);
3006
3007 if (pio->io_flags & ZIO_FLAG_IO_ALLOCATING) {
3008 ASSERT(pio->io_priority == ZIO_PRIORITY_ASYNC_WRITE);
3009 ASSERT(has_data);
3010
3011 /*
3012 * Gang children won't throttle but we should
3013 * account for their work, so reserve an allocation
3014 * slot for them here.
3015 */
3016 VERIFY(metaslab_class_throttle_reserve(mc,
3017 zp.zp_copies, cio->io_allocator, cio, flags));
3018 }
3019 zio_nowait(cio);
3020 }
3021
3022 /*
3023 * Set pio's pipeline to just wait for zio to finish.
3024 */
3025 pio->io_pipeline = ZIO_INTERLOCK_PIPELINE;
3026
3027 zio_nowait(zio);
3028
3029 return (pio);
3030 }
3031
3032 /*
3033 * The zio_nop_write stage in the pipeline determines if allocating a
3034 * new bp is necessary. The nopwrite feature can handle writes in
3035 * either syncing or open context (i.e. zil writes) and as a result is
3036 * mutually exclusive with dedup.
3037 *
3038 * By leveraging a cryptographically secure checksum, such as SHA256, we
3039 * can compare the checksums of the new data and the old to determine if
3040 * allocating a new block is required. Note that our requirements for
3041 * cryptographic strength are fairly weak: there can't be any accidental
3042 * hash collisions, but we don't need to be secure against intentional
3043 * (malicious) collisions. To trigger a nopwrite, you have to be able
3044 * to write the file to begin with, and triggering an incorrect (hash
3045 * collision) nopwrite is no worse than simply writing to the file.
3046 * That said, there are no known attacks against the checksum algorithms
3047 * used for nopwrite, assuming that the salt and the checksums
3048 * themselves remain secret.
3049 */
3050 static zio_t *
3051 zio_nop_write(zio_t *zio)
3052 {
3053 blkptr_t *bp = zio->io_bp;
3054 blkptr_t *bp_orig = &zio->io_bp_orig;
3055 zio_prop_t *zp = &zio->io_prop;
3056
3057 ASSERT(BP_IS_HOLE(bp));
3058 ASSERT(BP_GET_LEVEL(bp) == 0);
3059 ASSERT(!(zio->io_flags & ZIO_FLAG_IO_REWRITE));
3060 ASSERT(zp->zp_nopwrite);
3061 ASSERT(!zp->zp_dedup);
3062 ASSERT(zio->io_bp_override == NULL);
3063 ASSERT(IO_IS_ALLOCATING(zio));
3064
3065 /*
3066 * Check to see if the original bp and the new bp have matching
3067 * characteristics (i.e. same checksum, compression algorithms, etc).
3068 * If they don't then just continue with the pipeline which will
3069 * allocate a new bp.
3070 */
3071 if (BP_IS_HOLE(bp_orig) ||
3072 !(zio_checksum_table[BP_GET_CHECKSUM(bp)].ci_flags &
3073 ZCHECKSUM_FLAG_NOPWRITE) ||
3074 BP_IS_ENCRYPTED(bp) || BP_IS_ENCRYPTED(bp_orig) ||
3075 BP_GET_CHECKSUM(bp) != BP_GET_CHECKSUM(bp_orig) ||
3076 BP_GET_COMPRESS(bp) != BP_GET_COMPRESS(bp_orig) ||
3077 BP_GET_DEDUP(bp) != BP_GET_DEDUP(bp_orig) ||
3078 zp->zp_copies != BP_GET_NDVAS(bp_orig))
3079 return (zio);
3080
3081 /*
3082 * If the checksums match then reset the pipeline so that we
3083 * avoid allocating a new bp and issuing any I/O.
3084 */
3085 if (ZIO_CHECKSUM_EQUAL(bp->blk_cksum, bp_orig->blk_cksum)) {
3086 ASSERT(zio_checksum_table[zp->zp_checksum].ci_flags &
3087 ZCHECKSUM_FLAG_NOPWRITE);
3088 ASSERT3U(BP_GET_PSIZE(bp), ==, BP_GET_PSIZE(bp_orig));
3089 ASSERT3U(BP_GET_LSIZE(bp), ==, BP_GET_LSIZE(bp_orig));
3090 ASSERT(zp->zp_compress != ZIO_COMPRESS_OFF);
3091 ASSERT3U(bp->blk_prop, ==, bp_orig->blk_prop);
3092
3093 /*
3094 * If we're overwriting a block that is currently on an
3095 * indirect vdev, then ignore the nopwrite request and
3096 * allow a new block to be allocated on a concrete vdev.
3097 */
3098 spa_config_enter(zio->io_spa, SCL_VDEV, FTAG, RW_READER);
3099 for (int d = 0; d < BP_GET_NDVAS(bp_orig); d++) {
3100 vdev_t *tvd = vdev_lookup_top(zio->io_spa,
3101 DVA_GET_VDEV(&bp_orig->blk_dva[d]));
3102 if (tvd->vdev_ops == &vdev_indirect_ops) {
3103 spa_config_exit(zio->io_spa, SCL_VDEV, FTAG);
3104 return (zio);
3105 }
3106 }
3107 spa_config_exit(zio->io_spa, SCL_VDEV, FTAG);
3108
3109 *bp = *bp_orig;
3110 zio->io_pipeline = ZIO_INTERLOCK_PIPELINE;
3111 zio->io_flags |= ZIO_FLAG_NOPWRITE;
3112 }
3113
3114 return (zio);
3115 }
3116
3117 /*
3118 * ==========================================================================
3119 * Block Reference Table
3120 * ==========================================================================
3121 */
3122 static zio_t *
3123 zio_brt_free(zio_t *zio)
3124 {
3125 blkptr_t *bp;
3126
3127 bp = zio->io_bp;
3128
3129 if (BP_GET_LEVEL(bp) > 0 ||
3130 BP_IS_METADATA(bp) ||
3131 !brt_maybe_exists(zio->io_spa, bp)) {
3132 return (zio);
3133 }
3134
3135 if (!brt_entry_decref(zio->io_spa, bp)) {
3136 /*
3137 * This isn't the last reference, so we cannot free
3138 * the data yet.
3139 */
3140 zio->io_pipeline = ZIO_INTERLOCK_PIPELINE;
3141 }
3142
3143 return (zio);
3144 }
3145
3146 /*
3147 * ==========================================================================
3148 * Dedup
3149 * ==========================================================================
3150 */
3151 static void
3152 zio_ddt_child_read_done(zio_t *zio)
3153 {
3154 blkptr_t *bp = zio->io_bp;
3155 ddt_entry_t *dde = zio->io_private;
3156 ddt_phys_t *ddp;
3157 zio_t *pio = zio_unique_parent(zio);
3158
3159 mutex_enter(&pio->io_lock);
3160 ddp = ddt_phys_select(dde, bp);
3161 if (zio->io_error == 0)
3162 ddt_phys_clear(ddp); /* this ddp doesn't need repair */
3163
3164 if (zio->io_error == 0 && dde->dde_repair_abd == NULL)
3165 dde->dde_repair_abd = zio->io_abd;
3166 else
3167 abd_free(zio->io_abd);
3168 mutex_exit(&pio->io_lock);
3169 }
3170
3171 static zio_t *
3172 zio_ddt_read_start(zio_t *zio)
3173 {
3174 blkptr_t *bp = zio->io_bp;
3175
3176 ASSERT(BP_GET_DEDUP(bp));
3177 ASSERT(BP_GET_PSIZE(bp) == zio->io_size);
3178 ASSERT(zio->io_child_type == ZIO_CHILD_LOGICAL);
3179
3180 if (zio->io_child_error[ZIO_CHILD_DDT]) {
3181 ddt_t *ddt = ddt_select(zio->io_spa, bp);
3182 ddt_entry_t *dde = ddt_repair_start(ddt, bp);
3183 ddt_phys_t *ddp = dde->dde_phys;
3184 ddt_phys_t *ddp_self = ddt_phys_select(dde, bp);
3185 blkptr_t blk;
3186
3187 ASSERT(zio->io_vsd == NULL);
3188 zio->io_vsd = dde;
3189
3190 if (ddp_self == NULL)
3191 return (zio);
3192
3193 for (int p = 0; p < DDT_PHYS_TYPES; p++, ddp++) {
3194 if (ddp->ddp_phys_birth == 0 || ddp == ddp_self)
3195 continue;
3196 ddt_bp_create(ddt->ddt_checksum, &dde->dde_key, ddp,
3197 &blk);
3198 zio_nowait(zio_read(zio, zio->io_spa, &blk,
3199 abd_alloc_for_io(zio->io_size, B_TRUE),
3200 zio->io_size, zio_ddt_child_read_done, dde,
3201 zio->io_priority, ZIO_DDT_CHILD_FLAGS(zio) |
3202 ZIO_FLAG_DONT_PROPAGATE, &zio->io_bookmark));
3203 }
3204 return (zio);
3205 }
3206
3207 zio_nowait(zio_read(zio, zio->io_spa, bp,
3208 zio->io_abd, zio->io_size, NULL, NULL, zio->io_priority,
3209 ZIO_DDT_CHILD_FLAGS(zio), &zio->io_bookmark));
3210
3211 return (zio);
3212 }
3213
3214 static zio_t *
3215 zio_ddt_read_done(zio_t *zio)
3216 {
3217 blkptr_t *bp = zio->io_bp;
3218
3219 if (zio_wait_for_children(zio, ZIO_CHILD_DDT_BIT, ZIO_WAIT_DONE)) {
3220 return (NULL);
3221 }
3222
3223 ASSERT(BP_GET_DEDUP(bp));
3224 ASSERT(BP_GET_PSIZE(bp) == zio->io_size);
3225 ASSERT(zio->io_child_type == ZIO_CHILD_LOGICAL);
3226
3227 if (zio->io_child_error[ZIO_CHILD_DDT]) {
3228 ddt_t *ddt = ddt_select(zio->io_spa, bp);
3229 ddt_entry_t *dde = zio->io_vsd;
3230 if (ddt == NULL) {
3231 ASSERT(spa_load_state(zio->io_spa) != SPA_LOAD_NONE);
3232 return (zio);
3233 }
3234 if (dde == NULL) {
3235 zio->io_stage = ZIO_STAGE_DDT_READ_START >> 1;
3236 zio_taskq_dispatch(zio, ZIO_TASKQ_ISSUE, B_FALSE);
3237 return (NULL);
3238 }
3239 if (dde->dde_repair_abd != NULL) {
3240 abd_copy(zio->io_abd, dde->dde_repair_abd,
3241 zio->io_size);
3242 zio->io_child_error[ZIO_CHILD_DDT] = 0;
3243 }
3244 ddt_repair_done(ddt, dde);
3245 zio->io_vsd = NULL;
3246 }
3247
3248 ASSERT(zio->io_vsd == NULL);
3249
3250 return (zio);
3251 }
3252
3253 static boolean_t
3254 zio_ddt_collision(zio_t *zio, ddt_t *ddt, ddt_entry_t *dde)
3255 {
3256 spa_t *spa = zio->io_spa;
3257 boolean_t do_raw = !!(zio->io_flags & ZIO_FLAG_RAW);
3258
3259 ASSERT(!(zio->io_bp_override && do_raw));
3260
3261 /*
3262 * Note: we compare the original data, not the transformed data,
3263 * because when zio->io_bp is an override bp, we will not have
3264 * pushed the I/O transforms. That's an important optimization
3265 * because otherwise we'd compress/encrypt all dmu_sync() data twice.
3266 * However, we should never get a raw, override zio so in these
3267 * cases we can compare the io_abd directly. This is useful because
3268 * it allows us to do dedup verification even if we don't have access
3269 * to the original data (for instance, if the encryption keys aren't
3270 * loaded).
3271 */
3272
3273 for (int p = DDT_PHYS_SINGLE; p <= DDT_PHYS_TRIPLE; p++) {
3274 zio_t *lio = dde->dde_lead_zio[p];
3275
3276 if (lio != NULL && do_raw) {
3277 return (lio->io_size != zio->io_size ||
3278 abd_cmp(zio->io_abd, lio->io_abd) != 0);
3279 } else if (lio != NULL) {
3280 return (lio->io_orig_size != zio->io_orig_size ||
3281 abd_cmp(zio->io_orig_abd, lio->io_orig_abd) != 0);
3282 }
3283 }
3284
3285 for (int p = DDT_PHYS_SINGLE; p <= DDT_PHYS_TRIPLE; p++) {
3286 ddt_phys_t *ddp = &dde->dde_phys[p];
3287
3288 if (ddp->ddp_phys_birth != 0 && do_raw) {
3289 blkptr_t blk = *zio->io_bp;
3290 uint64_t psize;
3291 abd_t *tmpabd;
3292 int error;
3293
3294 ddt_bp_fill(ddp, &blk, ddp->ddp_phys_birth);
3295 psize = BP_GET_PSIZE(&blk);
3296
3297 if (psize != zio->io_size)
3298 return (B_TRUE);
3299
3300 ddt_exit(ddt);
3301
3302 tmpabd = abd_alloc_for_io(psize, B_TRUE);
3303
3304 error = zio_wait(zio_read(NULL, spa, &blk, tmpabd,
3305 psize, NULL, NULL, ZIO_PRIORITY_SYNC_READ,
3306 ZIO_FLAG_CANFAIL | ZIO_FLAG_SPECULATIVE |
3307 ZIO_FLAG_RAW, &zio->io_bookmark));
3308
3309 if (error == 0) {
3310 if (abd_cmp(tmpabd, zio->io_abd) != 0)
3311 error = SET_ERROR(ENOENT);
3312 }
3313
3314 abd_free(tmpabd);
3315 ddt_enter(ddt);
3316 return (error != 0);
3317 } else if (ddp->ddp_phys_birth != 0) {
3318 arc_buf_t *abuf = NULL;
3319 arc_flags_t aflags = ARC_FLAG_WAIT;
3320 blkptr_t blk = *zio->io_bp;
3321 int error;
3322
3323 ddt_bp_fill(ddp, &blk, ddp->ddp_phys_birth);
3324
3325 if (BP_GET_LSIZE(&blk) != zio->io_orig_size)
3326 return (B_TRUE);
3327
3328 ddt_exit(ddt);
3329
3330 error = arc_read(NULL, spa, &blk,
3331 arc_getbuf_func, &abuf, ZIO_PRIORITY_SYNC_READ,
3332 ZIO_FLAG_CANFAIL | ZIO_FLAG_SPECULATIVE,
3333 &aflags, &zio->io_bookmark);
3334
3335 if (error == 0) {
3336 if (abd_cmp_buf(zio->io_orig_abd, abuf->b_data,
3337 zio->io_orig_size) != 0)
3338 error = SET_ERROR(ENOENT);
3339 arc_buf_destroy(abuf, &abuf);
3340 }
3341
3342 ddt_enter(ddt);
3343 return (error != 0);
3344 }
3345 }
3346
3347 return (B_FALSE);
3348 }
3349
3350 static void
3351 zio_ddt_child_write_ready(zio_t *zio)
3352 {
3353 int p = zio->io_prop.zp_copies;
3354 ddt_t *ddt = ddt_select(zio->io_spa, zio->io_bp);
3355 ddt_entry_t *dde = zio->io_private;
3356 ddt_phys_t *ddp = &dde->dde_phys[p];
3357 zio_t *pio;
3358
3359 if (zio->io_error)
3360 return;
3361
3362 ddt_enter(ddt);
3363
3364 ASSERT(dde->dde_lead_zio[p] == zio);
3365
3366 ddt_phys_fill(ddp, zio->io_bp);
3367
3368 zio_link_t *zl = NULL;
3369 while ((pio = zio_walk_parents(zio, &zl)) != NULL)
3370 ddt_bp_fill(ddp, pio->io_bp, zio->io_txg);
3371
3372 ddt_exit(ddt);
3373 }
3374
3375 static void
3376 zio_ddt_child_write_done(zio_t *zio)
3377 {
3378 int p = zio->io_prop.zp_copies;
3379 ddt_t *ddt = ddt_select(zio->io_spa, zio->io_bp);
3380 ddt_entry_t *dde = zio->io_private;
3381 ddt_phys_t *ddp = &dde->dde_phys[p];
3382
3383 ddt_enter(ddt);
3384
3385 ASSERT(ddp->ddp_refcnt == 0);
3386 ASSERT(dde->dde_lead_zio[p] == zio);
3387 dde->dde_lead_zio[p] = NULL;
3388
3389 if (zio->io_error == 0) {
3390 zio_link_t *zl = NULL;
3391 while (zio_walk_parents(zio, &zl) != NULL)
3392 ddt_phys_addref(ddp);
3393 } else {
3394 ddt_phys_clear(ddp);
3395 }
3396
3397 ddt_exit(ddt);
3398 }
3399
3400 static zio_t *
3401 zio_ddt_write(zio_t *zio)
3402 {
3403 spa_t *spa = zio->io_spa;
3404 blkptr_t *bp = zio->io_bp;
3405 uint64_t txg = zio->io_txg;
3406 zio_prop_t *zp = &zio->io_prop;
3407 int p = zp->zp_copies;
3408 zio_t *cio = NULL;
3409 ddt_t *ddt = ddt_select(spa, bp);
3410 ddt_entry_t *dde;
3411 ddt_phys_t *ddp;
3412
3413 ASSERT(BP_GET_DEDUP(bp));
3414 ASSERT(BP_GET_CHECKSUM(bp) == zp->zp_checksum);
3415 ASSERT(BP_IS_HOLE(bp) || zio->io_bp_override);
3416 ASSERT(!(zio->io_bp_override && (zio->io_flags & ZIO_FLAG_RAW)));
3417
3418 ddt_enter(ddt);
3419 dde = ddt_lookup(ddt, bp, B_TRUE);
3420 ddp = &dde->dde_phys[p];
3421
3422 if (zp->zp_dedup_verify && zio_ddt_collision(zio, ddt, dde)) {
3423 /*
3424 * If we're using a weak checksum, upgrade to a strong checksum
3425 * and try again. If we're already using a strong checksum,
3426 * we can't resolve it, so just convert to an ordinary write.
3427 * (And automatically e-mail a paper to Nature?)
3428 */
3429 if (!(zio_checksum_table[zp->zp_checksum].ci_flags &
3430 ZCHECKSUM_FLAG_DEDUP)) {
3431 zp->zp_checksum = spa_dedup_checksum(spa);
3432 zio_pop_transforms(zio);
3433 zio->io_stage = ZIO_STAGE_OPEN;
3434 BP_ZERO(bp);
3435 } else {
3436 zp->zp_dedup = B_FALSE;
3437 BP_SET_DEDUP(bp, B_FALSE);
3438 }
3439 ASSERT(!BP_GET_DEDUP(bp));
3440 zio->io_pipeline = ZIO_WRITE_PIPELINE;
3441 ddt_exit(ddt);
3442 return (zio);
3443 }
3444
3445 if (ddp->ddp_phys_birth != 0 || dde->dde_lead_zio[p] != NULL) {
3446 if (ddp->ddp_phys_birth != 0)
3447 ddt_bp_fill(ddp, bp, txg);
3448 if (dde->dde_lead_zio[p] != NULL)
3449 zio_add_child(zio, dde->dde_lead_zio[p]);
3450 else
3451 ddt_phys_addref(ddp);
3452 } else if (zio->io_bp_override) {
3453 ASSERT(bp->blk_birth == txg);
3454 ASSERT(BP_EQUAL(bp, zio->io_bp_override));
3455 ddt_phys_fill(ddp, bp);
3456 ddt_phys_addref(ddp);
3457 } else {
3458 cio = zio_write(zio, spa, txg, bp, zio->io_orig_abd,
3459 zio->io_orig_size, zio->io_orig_size, zp,
3460 zio_ddt_child_write_ready, NULL,
3461 zio_ddt_child_write_done, dde, zio->io_priority,
3462 ZIO_DDT_CHILD_FLAGS(zio), &zio->io_bookmark);
3463
3464 zio_push_transform(cio, zio->io_abd, zio->io_size, 0, NULL);
3465 dde->dde_lead_zio[p] = cio;
3466 }
3467
3468 ddt_exit(ddt);
3469
3470 zio_nowait(cio);
3471
3472 return (zio);
3473 }
3474
3475 static ddt_entry_t *freedde; /* for debugging */
3476
3477 static zio_t *
3478 zio_ddt_free(zio_t *zio)
3479 {
3480 spa_t *spa = zio->io_spa;
3481 blkptr_t *bp = zio->io_bp;
3482 ddt_t *ddt = ddt_select(spa, bp);
3483 ddt_entry_t *dde;
3484 ddt_phys_t *ddp;
3485
3486 ASSERT(BP_GET_DEDUP(bp));
3487 ASSERT(zio->io_child_type == ZIO_CHILD_LOGICAL);
3488
3489 ddt_enter(ddt);
3490 freedde = dde = ddt_lookup(ddt, bp, B_TRUE);
3491 if (dde) {
3492 ddp = ddt_phys_select(dde, bp);
3493 if (ddp)
3494 ddt_phys_decref(ddp);
3495 }
3496 ddt_exit(ddt);
3497
3498 return (zio);
3499 }
3500
3501 /*
3502 * ==========================================================================
3503 * Allocate and free blocks
3504 * ==========================================================================
3505 */
3506
3507 static zio_t *
3508 zio_io_to_allocate(spa_t *spa, int allocator)
3509 {
3510 zio_t *zio;
3511
3512 ASSERT(MUTEX_HELD(&spa->spa_allocs[allocator].spaa_lock));
3513
3514 zio = avl_first(&spa->spa_allocs[allocator].spaa_tree);
3515 if (zio == NULL)
3516 return (NULL);
3517
3518 ASSERT(IO_IS_ALLOCATING(zio));
3519
3520 /*
3521 * Try to place a reservation for this zio. If we're unable to
3522 * reserve then we throttle.
3523 */
3524 ASSERT3U(zio->io_allocator, ==, allocator);
3525 if (!metaslab_class_throttle_reserve(zio->io_metaslab_class,
3526 zio->io_prop.zp_copies, allocator, zio, 0)) {
3527 return (NULL);
3528 }
3529
3530 avl_remove(&spa->spa_allocs[allocator].spaa_tree, zio);
3531 ASSERT3U(zio->io_stage, <, ZIO_STAGE_DVA_ALLOCATE);
3532
3533 return (zio);
3534 }
3535
3536 static zio_t *
3537 zio_dva_throttle(zio_t *zio)
3538 {
3539 spa_t *spa = zio->io_spa;
3540 zio_t *nio;
3541 metaslab_class_t *mc;
3542
3543 /* locate an appropriate allocation class */
3544 mc = spa_preferred_class(spa, zio->io_size, zio->io_prop.zp_type,
3545 zio->io_prop.zp_level, zio->io_prop.zp_zpl_smallblk);
3546
3547 if (zio->io_priority == ZIO_PRIORITY_SYNC_WRITE ||
3548 !mc->mc_alloc_throttle_enabled ||
3549 zio->io_child_type == ZIO_CHILD_GANG ||
3550 zio->io_flags & ZIO_FLAG_NODATA) {
3551 return (zio);
3552 }
3553
3554 ASSERT(zio->io_type == ZIO_TYPE_WRITE);
3555 ASSERT(zio->io_child_type > ZIO_CHILD_GANG);
3556 ASSERT3U(zio->io_queued_timestamp, >, 0);
3557 ASSERT(zio->io_stage == ZIO_STAGE_DVA_THROTTLE);
3558
3559 zbookmark_phys_t *bm = &zio->io_bookmark;
3560 /*
3561 * We want to try to use as many allocators as possible to help improve
3562 * performance, but we also want logically adjacent IOs to be physically
3563 * adjacent to improve sequential read performance. We chunk each object
3564 * into 2^20 block regions, and then hash based on the objset, object,
3565 * level, and region to accomplish both of these goals.
3566 */
3567 int allocator = (uint_t)cityhash4(bm->zb_objset, bm->zb_object,
3568 bm->zb_level, bm->zb_blkid >> 20) % spa->spa_alloc_count;
3569 zio->io_allocator = allocator;
3570 zio->io_metaslab_class = mc;
3571 mutex_enter(&spa->spa_allocs[allocator].spaa_lock);
3572 avl_add(&spa->spa_allocs[allocator].spaa_tree, zio);
3573 nio = zio_io_to_allocate(spa, allocator);
3574 mutex_exit(&spa->spa_allocs[allocator].spaa_lock);
3575 return (nio);
3576 }
3577
3578 static void
3579 zio_allocate_dispatch(spa_t *spa, int allocator)
3580 {
3581 zio_t *zio;
3582
3583 mutex_enter(&spa->spa_allocs[allocator].spaa_lock);
3584 zio = zio_io_to_allocate(spa, allocator);
3585 mutex_exit(&spa->spa_allocs[allocator].spaa_lock);
3586 if (zio == NULL)
3587 return;
3588
3589 ASSERT3U(zio->io_stage, ==, ZIO_STAGE_DVA_THROTTLE);
3590 ASSERT0(zio->io_error);
3591 zio_taskq_dispatch(zio, ZIO_TASKQ_ISSUE, B_TRUE);
3592 }
3593
3594 static zio_t *
3595 zio_dva_allocate(zio_t *zio)
3596 {
3597 spa_t *spa = zio->io_spa;
3598 metaslab_class_t *mc;
3599 blkptr_t *bp = zio->io_bp;
3600 int error;
3601 int flags = 0;
3602
3603 if (zio->io_gang_leader == NULL) {
3604 ASSERT(zio->io_child_type > ZIO_CHILD_GANG);
3605 zio->io_gang_leader = zio;
3606 }
3607
3608 ASSERT(BP_IS_HOLE(bp));
3609 ASSERT0(BP_GET_NDVAS(bp));
3610 ASSERT3U(zio->io_prop.zp_copies, >, 0);
3611 ASSERT3U(zio->io_prop.zp_copies, <=, spa_max_replication(spa));
3612 ASSERT3U(zio->io_size, ==, BP_GET_PSIZE(bp));
3613
3614 if (zio->io_flags & ZIO_FLAG_NODATA)
3615 flags |= METASLAB_DONT_THROTTLE;
3616 if (zio->io_flags & ZIO_FLAG_GANG_CHILD)
3617 flags |= METASLAB_GANG_CHILD;
3618 if (zio->io_priority == ZIO_PRIORITY_ASYNC_WRITE)
3619 flags |= METASLAB_ASYNC_ALLOC;
3620
3621 /*
3622 * if not already chosen, locate an appropriate allocation class
3623 */
3624 mc = zio->io_metaslab_class;
3625 if (mc == NULL) {
3626 mc = spa_preferred_class(spa, zio->io_size,
3627 zio->io_prop.zp_type, zio->io_prop.zp_level,
3628 zio->io_prop.zp_zpl_smallblk);
3629 zio->io_metaslab_class = mc;
3630 }
3631
3632 /*
3633 * Try allocating the block in the usual metaslab class.
3634 * If that's full, allocate it in the normal class.
3635 * If that's full, allocate as a gang block,
3636 * and if all are full, the allocation fails (which shouldn't happen).
3637 *
3638 * Note that we do not fall back on embedded slog (ZIL) space, to
3639 * preserve unfragmented slog space, which is critical for decent
3640 * sync write performance. If a log allocation fails, we will fall
3641 * back to spa_sync() which is abysmal for performance.
3642 */
3643 error = metaslab_alloc(spa, mc, zio->io_size, bp,
3644 zio->io_prop.zp_copies, zio->io_txg, NULL, flags,
3645 &zio->io_alloc_list, zio, zio->io_allocator);
3646
3647 /*
3648 * Fallback to normal class when an alloc class is full
3649 */
3650 if (error == ENOSPC && mc != spa_normal_class(spa)) {
3651 /*
3652 * If throttling, transfer reservation over to normal class.
3653 * The io_allocator slot can remain the same even though we
3654 * are switching classes.
3655 */
3656 if (mc->mc_alloc_throttle_enabled &&
3657 (zio->io_flags & ZIO_FLAG_IO_ALLOCATING)) {
3658 metaslab_class_throttle_unreserve(mc,
3659 zio->io_prop.zp_copies, zio->io_allocator, zio);
3660 zio->io_flags &= ~ZIO_FLAG_IO_ALLOCATING;
3661
3662 VERIFY(metaslab_class_throttle_reserve(
3663 spa_normal_class(spa),
3664 zio->io_prop.zp_copies, zio->io_allocator, zio,
3665 flags | METASLAB_MUST_RESERVE));
3666 }
3667 zio->io_metaslab_class = mc = spa_normal_class(spa);
3668 if (zfs_flags & ZFS_DEBUG_METASLAB_ALLOC) {
3669 zfs_dbgmsg("%s: metaslab allocation failure, "
3670 "trying normal class: zio %px, size %llu, error %d",
3671 spa_name(spa), zio, (u_longlong_t)zio->io_size,
3672 error);
3673 }
3674
3675 error = metaslab_alloc(spa, mc, zio->io_size, bp,
3676 zio->io_prop.zp_copies, zio->io_txg, NULL, flags,
3677 &zio->io_alloc_list, zio, zio->io_allocator);
3678 }
3679
3680 if (error == ENOSPC && zio->io_size > SPA_MINBLOCKSIZE) {
3681 if (zfs_flags & ZFS_DEBUG_METASLAB_ALLOC) {
3682 zfs_dbgmsg("%s: metaslab allocation failure, "
3683 "trying ganging: zio %px, size %llu, error %d",
3684 spa_name(spa), zio, (u_longlong_t)zio->io_size,
3685 error);
3686 }
3687 return (zio_write_gang_block(zio, mc));
3688 }
3689 if (error != 0) {
3690 if (error != ENOSPC ||
3691 (zfs_flags & ZFS_DEBUG_METASLAB_ALLOC)) {
3692 zfs_dbgmsg("%s: metaslab allocation failure: zio %px, "
3693 "size %llu, error %d",
3694 spa_name(spa), zio, (u_longlong_t)zio->io_size,
3695 error);
3696 }
3697 zio->io_error = error;
3698 }
3699
3700 return (zio);
3701 }
3702
3703 static zio_t *
3704 zio_dva_free(zio_t *zio)
3705 {
3706 metaslab_free(zio->io_spa, zio->io_bp, zio->io_txg, B_FALSE);
3707
3708 return (zio);
3709 }
3710
3711 static zio_t *
3712 zio_dva_claim(zio_t *zio)
3713 {
3714 int error;
3715
3716 error = metaslab_claim(zio->io_spa, zio->io_bp, zio->io_txg);
3717 if (error)
3718 zio->io_error = error;
3719
3720 return (zio);
3721 }
3722
3723 /*
3724 * Undo an allocation. This is used by zio_done() when an I/O fails
3725 * and we want to give back the block we just allocated.
3726 * This handles both normal blocks and gang blocks.
3727 */
3728 static void
3729 zio_dva_unallocate(zio_t *zio, zio_gang_node_t *gn, blkptr_t *bp)
3730 {
3731 ASSERT(bp->blk_birth == zio->io_txg || BP_IS_HOLE(bp));
3732 ASSERT(zio->io_bp_override == NULL);
3733
3734 if (!BP_IS_HOLE(bp))
3735 metaslab_free(zio->io_spa, bp, bp->blk_birth, B_TRUE);
3736
3737 if (gn != NULL) {
3738 for (int g = 0; g < SPA_GBH_NBLKPTRS; g++) {
3739 zio_dva_unallocate(zio, gn->gn_child[g],
3740 &gn->gn_gbh->zg_blkptr[g]);
3741 }
3742 }
3743 }
3744
3745 /*
3746 * Try to allocate an intent log block. Return 0 on success, errno on failure.
3747 */
3748 int
3749 zio_alloc_zil(spa_t *spa, objset_t *os, uint64_t txg, blkptr_t *new_bp,
3750 uint64_t size, boolean_t *slog)
3751 {
3752 int error = 1;
3753 zio_alloc_list_t io_alloc_list;
3754
3755 ASSERT(txg > spa_syncing_txg(spa));
3756
3757 metaslab_trace_init(&io_alloc_list);
3758
3759 /*
3760 * Block pointer fields are useful to metaslabs for stats and debugging.
3761 * Fill in the obvious ones before calling into metaslab_alloc().
3762 */
3763 BP_SET_TYPE(new_bp, DMU_OT_INTENT_LOG);
3764 BP_SET_PSIZE(new_bp, size);
3765 BP_SET_LEVEL(new_bp, 0);
3766
3767 /*
3768 * When allocating a zil block, we don't have information about
3769 * the final destination of the block except the objset it's part
3770 * of, so we just hash the objset ID to pick the allocator to get
3771 * some parallelism.
3772 */
3773 int flags = METASLAB_ZIL;
3774 int allocator = (uint_t)cityhash4(0, 0, 0,
3775 os->os_dsl_dataset->ds_object) % spa->spa_alloc_count;
3776 error = metaslab_alloc(spa, spa_log_class(spa), size, new_bp, 1,
3777 txg, NULL, flags, &io_alloc_list, NULL, allocator);
3778 *slog = (error == 0);
3779 if (error != 0) {
3780 error = metaslab_alloc(spa, spa_embedded_log_class(spa), size,
3781 new_bp, 1, txg, NULL, flags,
3782 &io_alloc_list, NULL, allocator);
3783 }
3784 if (error != 0) {
3785 error = metaslab_alloc(spa, spa_normal_class(spa), size,
3786 new_bp, 1, txg, NULL, flags,
3787 &io_alloc_list, NULL, allocator);
3788 }
3789 metaslab_trace_fini(&io_alloc_list);
3790
3791 if (error == 0) {
3792 BP_SET_LSIZE(new_bp, size);
3793 BP_SET_PSIZE(new_bp, size);
3794 BP_SET_COMPRESS(new_bp, ZIO_COMPRESS_OFF);
3795 BP_SET_CHECKSUM(new_bp,
3796 spa_version(spa) >= SPA_VERSION_SLIM_ZIL
3797 ? ZIO_CHECKSUM_ZILOG2 : ZIO_CHECKSUM_ZILOG);
3798 BP_SET_TYPE(new_bp, DMU_OT_INTENT_LOG);
3799 BP_SET_LEVEL(new_bp, 0);
3800 BP_SET_DEDUP(new_bp, 0);
3801 BP_SET_BYTEORDER(new_bp, ZFS_HOST_BYTEORDER);
3802
3803 /*
3804 * encrypted blocks will require an IV and salt. We generate
3805 * these now since we will not be rewriting the bp at
3806 * rewrite time.
3807 */
3808 if (os->os_encrypted) {
3809 uint8_t iv[ZIO_DATA_IV_LEN];
3810 uint8_t salt[ZIO_DATA_SALT_LEN];
3811
3812 BP_SET_CRYPT(new_bp, B_TRUE);
3813 VERIFY0(spa_crypt_get_salt(spa,
3814 dmu_objset_id(os), salt));
3815 VERIFY0(zio_crypt_generate_iv(iv));
3816
3817 zio_crypt_encode_params_bp(new_bp, salt, iv);
3818 }
3819 } else {
3820 zfs_dbgmsg("%s: zil block allocation failure: "
3821 "size %llu, error %d", spa_name(spa), (u_longlong_t)size,
3822 error);
3823 }
3824
3825 return (error);
3826 }
3827
3828 /*
3829 * ==========================================================================
3830 * Read and write to physical devices
3831 * ==========================================================================
3832 */
3833
3834 /*
3835 * Issue an I/O to the underlying vdev. Typically the issue pipeline
3836 * stops after this stage and will resume upon I/O completion.
3837 * However, there are instances where the vdev layer may need to
3838 * continue the pipeline when an I/O was not issued. Since the I/O
3839 * that was sent to the vdev layer might be different than the one
3840 * currently active in the pipeline (see vdev_queue_io()), we explicitly
3841 * force the underlying vdev layers to call either zio_execute() or
3842 * zio_interrupt() to ensure that the pipeline continues with the correct I/O.
3843 */
3844 static zio_t *
3845 zio_vdev_io_start(zio_t *zio)
3846 {
3847 vdev_t *vd = zio->io_vd;
3848 uint64_t align;
3849 spa_t *spa = zio->io_spa;
3850
3851 zio->io_delay = 0;
3852
3853 ASSERT(zio->io_error == 0);
3854 ASSERT(zio->io_child_error[ZIO_CHILD_VDEV] == 0);
3855
3856 if (vd == NULL) {
3857 if (!(zio->io_flags & ZIO_FLAG_CONFIG_WRITER))
3858 spa_config_enter(spa, SCL_ZIO, zio, RW_READER);
3859
3860 /*
3861 * The mirror_ops handle multiple DVAs in a single BP.
3862 */
3863 vdev_mirror_ops.vdev_op_io_start(zio);
3864 return (NULL);
3865 }
3866
3867 ASSERT3P(zio->io_logical, !=, zio);
3868 if (zio->io_type == ZIO_TYPE_WRITE) {
3869 ASSERT(spa->spa_trust_config);
3870
3871 /*
3872 * Note: the code can handle other kinds of writes,
3873 * but we don't expect them.
3874 */
3875 if (zio->io_vd->vdev_noalloc) {
3876 ASSERT(zio->io_flags &
3877 (ZIO_FLAG_PHYSICAL | ZIO_FLAG_SELF_HEAL |
3878 ZIO_FLAG_RESILVER | ZIO_FLAG_INDUCE_DAMAGE));
3879 }
3880 }
3881
3882 align = 1ULL << vd->vdev_top->vdev_ashift;
3883
3884 if (!(zio->io_flags & ZIO_FLAG_PHYSICAL) &&
3885 P2PHASE(zio->io_size, align) != 0) {
3886 /* Transform logical writes to be a full physical block size. */
3887 uint64_t asize = P2ROUNDUP(zio->io_size, align);
3888 abd_t *abuf = abd_alloc_sametype(zio->io_abd, asize);
3889 ASSERT(vd == vd->vdev_top);
3890 if (zio->io_type == ZIO_TYPE_WRITE) {
3891 abd_copy(abuf, zio->io_abd, zio->io_size);
3892 abd_zero_off(abuf, zio->io_size, asize - zio->io_size);
3893 }
3894 zio_push_transform(zio, abuf, asize, asize, zio_subblock);
3895 }
3896
3897 /*
3898 * If this is not a physical io, make sure that it is properly aligned
3899 * before proceeding.
3900 */
3901 if (!(zio->io_flags & ZIO_FLAG_PHYSICAL)) {
3902 ASSERT0(P2PHASE(zio->io_offset, align));
3903 ASSERT0(P2PHASE(zio->io_size, align));
3904 } else {
3905 /*
3906 * For physical writes, we allow 512b aligned writes and assume
3907 * the device will perform a read-modify-write as necessary.
3908 */
3909 ASSERT0(P2PHASE(zio->io_offset, SPA_MINBLOCKSIZE));
3910 ASSERT0(P2PHASE(zio->io_size, SPA_MINBLOCKSIZE));
3911 }
3912
3913 VERIFY(zio->io_type != ZIO_TYPE_WRITE || spa_writeable(spa));
3914
3915 /*
3916 * If this is a repair I/O, and there's no self-healing involved --
3917 * that is, we're just resilvering what we expect to resilver --
3918 * then don't do the I/O unless zio's txg is actually in vd's DTL.
3919 * This prevents spurious resilvering.
3920 *
3921 * There are a few ways that we can end up creating these spurious
3922 * resilver i/os:
3923 *
3924 * 1. A resilver i/o will be issued if any DVA in the BP has a
3925 * dirty DTL. The mirror code will issue resilver writes to
3926 * each DVA, including the one(s) that are not on vdevs with dirty
3927 * DTLs.
3928 *
3929 * 2. With nested replication, which happens when we have a
3930 * "replacing" or "spare" vdev that's a child of a mirror or raidz.
3931 * For example, given mirror(replacing(A+B), C), it's likely that
3932 * only A is out of date (it's the new device). In this case, we'll
3933 * read from C, then use the data to resilver A+B -- but we don't
3934 * actually want to resilver B, just A. The top-level mirror has no
3935 * way to know this, so instead we just discard unnecessary repairs
3936 * as we work our way down the vdev tree.
3937 *
3938 * 3. ZTEST also creates mirrors of mirrors, mirrors of raidz, etc.
3939 * The same logic applies to any form of nested replication: ditto
3940 * + mirror, RAID-Z + replacing, etc.
3941 *
3942 * However, indirect vdevs point off to other vdevs which may have
3943 * DTL's, so we never bypass them. The child i/os on concrete vdevs
3944 * will be properly bypassed instead.
3945 *
3946 * Leaf DTL_PARTIAL can be empty when a legitimate write comes from
3947 * a dRAID spare vdev. For example, when a dRAID spare is first
3948 * used, its spare blocks need to be written to but the leaf vdev's
3949 * of such blocks can have empty DTL_PARTIAL.
3950 *
3951 * There seemed no clean way to allow such writes while bypassing
3952 * spurious ones. At this point, just avoid all bypassing for dRAID
3953 * for correctness.
3954 */
3955 if ((zio->io_flags & ZIO_FLAG_IO_REPAIR) &&
3956 !(zio->io_flags & ZIO_FLAG_SELF_HEAL) &&
3957 zio->io_txg != 0 && /* not a delegated i/o */
3958 vd->vdev_ops != &vdev_indirect_ops &&
3959 vd->vdev_top->vdev_ops != &vdev_draid_ops &&
3960 !vdev_dtl_contains(vd, DTL_PARTIAL, zio->io_txg, 1)) {
3961 ASSERT(zio->io_type == ZIO_TYPE_WRITE);
3962 zio_vdev_io_bypass(zio);
3963 return (zio);
3964 }
3965
3966 /*
3967 * Select the next best leaf I/O to process. Distributed spares are
3968 * excluded since they dispatch the I/O directly to a leaf vdev after
3969 * applying the dRAID mapping.
3970 */
3971 if (vd->vdev_ops->vdev_op_leaf &&
3972 vd->vdev_ops != &vdev_draid_spare_ops &&
3973 (zio->io_type == ZIO_TYPE_READ ||
3974 zio->io_type == ZIO_TYPE_WRITE ||
3975 zio->io_type == ZIO_TYPE_TRIM)) {
3976
3977 if ((zio = vdev_queue_io(zio)) == NULL)
3978 return (NULL);
3979
3980 if (!vdev_accessible(vd, zio)) {
3981 zio->io_error = SET_ERROR(ENXIO);
3982 zio_interrupt(zio);
3983 return (NULL);
3984 }
3985 zio->io_delay = gethrtime();
3986 }
3987
3988 vd->vdev_ops->vdev_op_io_start(zio);
3989 return (NULL);
3990 }
3991
3992 static zio_t *
3993 zio_vdev_io_done(zio_t *zio)
3994 {
3995 vdev_t *vd = zio->io_vd;
3996 vdev_ops_t *ops = vd ? vd->vdev_ops : &vdev_mirror_ops;
3997 boolean_t unexpected_error = B_FALSE;
3998
3999 if (zio_wait_for_children(zio, ZIO_CHILD_VDEV_BIT, ZIO_WAIT_DONE)) {
4000 return (NULL);
4001 }
4002
4003 ASSERT(zio->io_type == ZIO_TYPE_READ ||
4004 zio->io_type == ZIO_TYPE_WRITE || zio->io_type == ZIO_TYPE_TRIM);
4005
4006 if (zio->io_delay)
4007 zio->io_delay = gethrtime() - zio->io_delay;
4008
4009 if (vd != NULL && vd->vdev_ops->vdev_op_leaf &&
4010 vd->vdev_ops != &vdev_draid_spare_ops) {
4011 vdev_queue_io_done(zio);
4012
4013 if (zio_injection_enabled && zio->io_error == 0)
4014 zio->io_error = zio_handle_device_injections(vd, zio,
4015 EIO, EILSEQ);
4016
4017 if (zio_injection_enabled && zio->io_error == 0)
4018 zio->io_error = zio_handle_label_injection(zio, EIO);
4019
4020 if (zio->io_error && zio->io_type != ZIO_TYPE_TRIM) {
4021 if (!vdev_accessible(vd, zio)) {
4022 zio->io_error = SET_ERROR(ENXIO);
4023 } else {
4024 unexpected_error = B_TRUE;
4025 }
4026 }
4027 }
4028
4029 ops->vdev_op_io_done(zio);
4030
4031 if (unexpected_error && vd->vdev_remove_wanted == B_FALSE)
4032 VERIFY(vdev_probe(vd, zio) == NULL);
4033
4034 return (zio);
4035 }
4036
4037 /*
4038 * This function is used to change the priority of an existing zio that is
4039 * currently in-flight. This is used by the arc to upgrade priority in the
4040 * event that a demand read is made for a block that is currently queued
4041 * as a scrub or async read IO. Otherwise, the high priority read request
4042 * would end up having to wait for the lower priority IO.
4043 */
4044 void
4045 zio_change_priority(zio_t *pio, zio_priority_t priority)
4046 {
4047 zio_t *cio, *cio_next;
4048 zio_link_t *zl = NULL;
4049
4050 ASSERT3U(priority, <, ZIO_PRIORITY_NUM_QUEUEABLE);
4051
4052 if (pio->io_vd != NULL && pio->io_vd->vdev_ops->vdev_op_leaf) {
4053 vdev_queue_change_io_priority(pio, priority);
4054 } else {
4055 pio->io_priority = priority;
4056 }
4057
4058 mutex_enter(&pio->io_lock);
4059 for (cio = zio_walk_children(pio, &zl); cio != NULL; cio = cio_next) {
4060 cio_next = zio_walk_children(pio, &zl);
4061 zio_change_priority(cio, priority);
4062 }
4063 mutex_exit(&pio->io_lock);
4064 }
4065
4066 /*
4067 * For non-raidz ZIOs, we can just copy aside the bad data read from the
4068 * disk, and use that to finish the checksum ereport later.
4069 */
4070 static void
4071 zio_vsd_default_cksum_finish(zio_cksum_report_t *zcr,
4072 const abd_t *good_buf)
4073 {
4074 /* no processing needed */
4075 zfs_ereport_finish_checksum(zcr, good_buf, zcr->zcr_cbdata, B_FALSE);
4076 }
4077
4078 void
4079 zio_vsd_default_cksum_report(zio_t *zio, zio_cksum_report_t *zcr)
4080 {
4081 void *abd = abd_alloc_sametype(zio->io_abd, zio->io_size);
4082
4083 abd_copy(abd, zio->io_abd, zio->io_size);
4084
4085 zcr->zcr_cbinfo = zio->io_size;
4086 zcr->zcr_cbdata = abd;
4087 zcr->zcr_finish = zio_vsd_default_cksum_finish;
4088 zcr->zcr_free = zio_abd_free;
4089 }
4090
4091 static zio_t *
4092 zio_vdev_io_assess(zio_t *zio)
4093 {
4094 vdev_t *vd = zio->io_vd;
4095
4096 if (zio_wait_for_children(zio, ZIO_CHILD_VDEV_BIT, ZIO_WAIT_DONE)) {
4097 return (NULL);
4098 }
4099
4100 if (vd == NULL && !(zio->io_flags & ZIO_FLAG_CONFIG_WRITER))
4101 spa_config_exit(zio->io_spa, SCL_ZIO, zio);
4102
4103 if (zio->io_vsd != NULL) {
4104 zio->io_vsd_ops->vsd_free(zio);
4105 zio->io_vsd = NULL;
4106 }
4107
4108 if (zio_injection_enabled && zio->io_error == 0)
4109 zio->io_error = zio_handle_fault_injection(zio, EIO);
4110
4111 /*
4112 * If the I/O failed, determine whether we should attempt to retry it.
4113 *
4114 * On retry, we cut in line in the issue queue, since we don't want
4115 * compression/checksumming/etc. work to prevent our (cheap) IO reissue.
4116 */
4117 if (zio->io_error && vd == NULL &&
4118 !(zio->io_flags & (ZIO_FLAG_DONT_RETRY | ZIO_FLAG_IO_RETRY))) {
4119 ASSERT(!(zio->io_flags & ZIO_FLAG_DONT_QUEUE)); /* not a leaf */
4120 ASSERT(!(zio->io_flags & ZIO_FLAG_IO_BYPASS)); /* not a leaf */
4121 zio->io_error = 0;
4122 zio->io_flags |= ZIO_FLAG_IO_RETRY | ZIO_FLAG_DONT_AGGREGATE;
4123 zio->io_stage = ZIO_STAGE_VDEV_IO_START >> 1;
4124 zio_taskq_dispatch(zio, ZIO_TASKQ_ISSUE,
4125 zio_requeue_io_start_cut_in_line);
4126 return (NULL);
4127 }
4128
4129 /*
4130 * If we got an error on a leaf device, convert it to ENXIO
4131 * if the device is not accessible at all.
4132 */
4133 if (zio->io_error && vd != NULL && vd->vdev_ops->vdev_op_leaf &&
4134 !vdev_accessible(vd, zio))
4135 zio->io_error = SET_ERROR(ENXIO);
4136
4137 /*
4138 * If we can't write to an interior vdev (mirror or RAID-Z),
4139 * set vdev_cant_write so that we stop trying to allocate from it.
4140 */
4141 if (zio->io_error == ENXIO && zio->io_type == ZIO_TYPE_WRITE &&
4142 vd != NULL && !vd->vdev_ops->vdev_op_leaf) {
4143 vdev_dbgmsg(vd, "zio_vdev_io_assess(zio=%px) setting "
4144 "cant_write=TRUE due to write failure with ENXIO",
4145 zio);
4146 vd->vdev_cant_write = B_TRUE;
4147 }
4148
4149 /*
4150 * If a cache flush returns ENOTSUP or ENOTTY, we know that no future
4151 * attempts will ever succeed. In this case we set a persistent
4152 * boolean flag so that we don't bother with it in the future.
4153 */
4154 if ((zio->io_error == ENOTSUP || zio->io_error == ENOTTY) &&
4155 zio->io_type == ZIO_TYPE_IOCTL &&
4156 zio->io_cmd == DKIOCFLUSHWRITECACHE && vd != NULL)
4157 vd->vdev_nowritecache = B_TRUE;
4158
4159 if (zio->io_error)
4160 zio->io_pipeline = ZIO_INTERLOCK_PIPELINE;
4161
4162 return (zio);
4163 }
4164
4165 void
4166 zio_vdev_io_reissue(zio_t *zio)
4167 {
4168 ASSERT(zio->io_stage == ZIO_STAGE_VDEV_IO_START);
4169 ASSERT(zio->io_error == 0);
4170
4171 zio->io_stage >>= 1;
4172 }
4173
4174 void
4175 zio_vdev_io_redone(zio_t *zio)
4176 {
4177 ASSERT(zio->io_stage == ZIO_STAGE_VDEV_IO_DONE);
4178
4179 zio->io_stage >>= 1;
4180 }
4181
4182 void
4183 zio_vdev_io_bypass(zio_t *zio)
4184 {
4185 ASSERT(zio->io_stage == ZIO_STAGE_VDEV_IO_START);
4186 ASSERT(zio->io_error == 0);
4187
4188 zio->io_flags |= ZIO_FLAG_IO_BYPASS;
4189 zio->io_stage = ZIO_STAGE_VDEV_IO_ASSESS >> 1;
4190 }
4191
4192 /*
4193 * ==========================================================================
4194 * Encrypt and store encryption parameters
4195 * ==========================================================================
4196 */
4197
4198
4199 /*
4200 * This function is used for ZIO_STAGE_ENCRYPT. It is responsible for
4201 * managing the storage of encryption parameters and passing them to the
4202 * lower-level encryption functions.
4203 */
4204 static zio_t *
4205 zio_encrypt(zio_t *zio)
4206 {
4207 zio_prop_t *zp = &zio->io_prop;
4208 spa_t *spa = zio->io_spa;
4209 blkptr_t *bp = zio->io_bp;
4210 uint64_t psize = BP_GET_PSIZE(bp);
4211 uint64_t dsobj = zio->io_bookmark.zb_objset;
4212 dmu_object_type_t ot = BP_GET_TYPE(bp);
4213 void *enc_buf = NULL;
4214 abd_t *eabd = NULL;
4215 uint8_t salt[ZIO_DATA_SALT_LEN];
4216 uint8_t iv[ZIO_DATA_IV_LEN];
4217 uint8_t mac[ZIO_DATA_MAC_LEN];
4218 boolean_t no_crypt = B_FALSE;
4219
4220 /* the root zio already encrypted the data */
4221 if (zio->io_child_type == ZIO_CHILD_GANG)
4222 return (zio);
4223
4224 /* only ZIL blocks are re-encrypted on rewrite */
4225 if (!IO_IS_ALLOCATING(zio) && ot != DMU_OT_INTENT_LOG)
4226 return (zio);
4227
4228 if (!(zp->zp_encrypt || BP_IS_ENCRYPTED(bp))) {
4229 BP_SET_CRYPT(bp, B_FALSE);
4230 return (zio);
4231 }
4232
4233 /* if we are doing raw encryption set the provided encryption params */
4234 if (zio->io_flags & ZIO_FLAG_RAW_ENCRYPT) {
4235 ASSERT0(BP_GET_LEVEL(bp));
4236 BP_SET_CRYPT(bp, B_TRUE);
4237 BP_SET_BYTEORDER(bp, zp->zp_byteorder);
4238 if (ot != DMU_OT_OBJSET)
4239 zio_crypt_encode_mac_bp(bp, zp->zp_mac);
4240
4241 /* dnode blocks must be written out in the provided byteorder */
4242 if (zp->zp_byteorder != ZFS_HOST_BYTEORDER &&
4243 ot == DMU_OT_DNODE) {
4244 void *bswap_buf = zio_buf_alloc(psize);
4245 abd_t *babd = abd_get_from_buf(bswap_buf, psize);
4246
4247 ASSERT3U(BP_GET_COMPRESS(bp), ==, ZIO_COMPRESS_OFF);
4248 abd_copy_to_buf(bswap_buf, zio->io_abd, psize);
4249 dmu_ot_byteswap[DMU_OT_BYTESWAP(ot)].ob_func(bswap_buf,
4250 psize);
4251
4252 abd_take_ownership_of_buf(babd, B_TRUE);
4253 zio_push_transform(zio, babd, psize, psize, NULL);
4254 }
4255
4256 if (DMU_OT_IS_ENCRYPTED(ot))
4257 zio_crypt_encode_params_bp(bp, zp->zp_salt, zp->zp_iv);
4258 return (zio);
4259 }
4260
4261 /* indirect blocks only maintain a cksum of the lower level MACs */
4262 if (BP_GET_LEVEL(bp) > 0) {
4263 BP_SET_CRYPT(bp, B_TRUE);
4264 VERIFY0(zio_crypt_do_indirect_mac_checksum_abd(B_TRUE,
4265 zio->io_orig_abd, BP_GET_LSIZE(bp), BP_SHOULD_BYTESWAP(bp),
4266 mac));
4267 zio_crypt_encode_mac_bp(bp, mac);
4268 return (zio);
4269 }
4270
4271 /*
4272 * Objset blocks are a special case since they have 2 256-bit MACs
4273 * embedded within them.
4274 */
4275 if (ot == DMU_OT_OBJSET) {
4276 ASSERT0(DMU_OT_IS_ENCRYPTED(ot));
4277 ASSERT3U(BP_GET_COMPRESS(bp), ==, ZIO_COMPRESS_OFF);
4278 BP_SET_CRYPT(bp, B_TRUE);
4279 VERIFY0(spa_do_crypt_objset_mac_abd(B_TRUE, spa, dsobj,
4280 zio->io_abd, psize, BP_SHOULD_BYTESWAP(bp)));
4281 return (zio);
4282 }
4283
4284 /* unencrypted object types are only authenticated with a MAC */
4285 if (!DMU_OT_IS_ENCRYPTED(ot)) {
4286 BP_SET_CRYPT(bp, B_TRUE);
4287 VERIFY0(spa_do_crypt_mac_abd(B_TRUE, spa, dsobj,
4288 zio->io_abd, psize, mac));
4289 zio_crypt_encode_mac_bp(bp, mac);
4290 return (zio);
4291 }
4292
4293 /*
4294 * Later passes of sync-to-convergence may decide to rewrite data
4295 * in place to avoid more disk reallocations. This presents a problem
4296 * for encryption because this constitutes rewriting the new data with
4297 * the same encryption key and IV. However, this only applies to blocks
4298 * in the MOS (particularly the spacemaps) and we do not encrypt the
4299 * MOS. We assert that the zio is allocating or an intent log write
4300 * to enforce this.
4301 */
4302 ASSERT(IO_IS_ALLOCATING(zio) || ot == DMU_OT_INTENT_LOG);
4303 ASSERT(BP_GET_LEVEL(bp) == 0 || ot == DMU_OT_INTENT_LOG);
4304 ASSERT(spa_feature_is_active(spa, SPA_FEATURE_ENCRYPTION));
4305 ASSERT3U(psize, !=, 0);
4306
4307 enc_buf = zio_buf_alloc(psize);
4308 eabd = abd_get_from_buf(enc_buf, psize);
4309 abd_take_ownership_of_buf(eabd, B_TRUE);
4310
4311 /*
4312 * For an explanation of what encryption parameters are stored
4313 * where, see the block comment in zio_crypt.c.
4314 */
4315 if (ot == DMU_OT_INTENT_LOG) {
4316 zio_crypt_decode_params_bp(bp, salt, iv);
4317 } else {
4318 BP_SET_CRYPT(bp, B_TRUE);
4319 }
4320
4321 /* Perform the encryption. This should not fail */
4322 VERIFY0(spa_do_crypt_abd(B_TRUE, spa, &zio->io_bookmark,
4323 BP_GET_TYPE(bp), BP_GET_DEDUP(bp), BP_SHOULD_BYTESWAP(bp),
4324 salt, iv, mac, psize, zio->io_abd, eabd, &no_crypt));
4325
4326 /* encode encryption metadata into the bp */
4327 if (ot == DMU_OT_INTENT_LOG) {
4328 /*
4329 * ZIL blocks store the MAC in the embedded checksum, so the
4330 * transform must always be applied.
4331 */
4332 zio_crypt_encode_mac_zil(enc_buf, mac);
4333 zio_push_transform(zio, eabd, psize, psize, NULL);
4334 } else {
4335 BP_SET_CRYPT(bp, B_TRUE);
4336 zio_crypt_encode_params_bp(bp, salt, iv);
4337 zio_crypt_encode_mac_bp(bp, mac);
4338
4339 if (no_crypt) {
4340 ASSERT3U(ot, ==, DMU_OT_DNODE);
4341 abd_free(eabd);
4342 } else {
4343 zio_push_transform(zio, eabd, psize, psize, NULL);
4344 }
4345 }
4346
4347 return (zio);
4348 }
4349
4350 /*
4351 * ==========================================================================
4352 * Generate and verify checksums
4353 * ==========================================================================
4354 */
4355 static zio_t *
4356 zio_checksum_generate(zio_t *zio)
4357 {
4358 blkptr_t *bp = zio->io_bp;
4359 enum zio_checksum checksum;
4360
4361 if (bp == NULL) {
4362 /*
4363 * This is zio_write_phys().
4364 * We're either generating a label checksum, or none at all.
4365 */
4366 checksum = zio->io_prop.zp_checksum;
4367
4368 if (checksum == ZIO_CHECKSUM_OFF)
4369 return (zio);
4370
4371 ASSERT(checksum == ZIO_CHECKSUM_LABEL);
4372 } else {
4373 if (BP_IS_GANG(bp) && zio->io_child_type == ZIO_CHILD_GANG) {
4374 ASSERT(!IO_IS_ALLOCATING(zio));
4375 checksum = ZIO_CHECKSUM_GANG_HEADER;
4376 } else {
4377 checksum = BP_GET_CHECKSUM(bp);
4378 }
4379 }
4380
4381 zio_checksum_compute(zio, checksum, zio->io_abd, zio->io_size);
4382
4383 return (zio);
4384 }
4385
4386 static zio_t *
4387 zio_checksum_verify(zio_t *zio)
4388 {
4389 zio_bad_cksum_t info;
4390 blkptr_t *bp = zio->io_bp;
4391 int error;
4392
4393 ASSERT(zio->io_vd != NULL);
4394
4395 if (bp == NULL) {
4396 /*
4397 * This is zio_read_phys().
4398 * We're either verifying a label checksum, or nothing at all.
4399 */
4400 if (zio->io_prop.zp_checksum == ZIO_CHECKSUM_OFF)
4401 return (zio);
4402
4403 ASSERT3U(zio->io_prop.zp_checksum, ==, ZIO_CHECKSUM_LABEL);
4404 }
4405
4406 if ((error = zio_checksum_error(zio, &info)) != 0) {
4407 zio->io_error = error;
4408 if (error == ECKSUM &&
4409 !(zio->io_flags & ZIO_FLAG_SPECULATIVE)) {
4410 mutex_enter(&zio->io_vd->vdev_stat_lock);
4411 zio->io_vd->vdev_stat.vs_checksum_errors++;
4412 mutex_exit(&zio->io_vd->vdev_stat_lock);
4413 (void) zfs_ereport_start_checksum(zio->io_spa,
4414 zio->io_vd, &zio->io_bookmark, zio,
4415 zio->io_offset, zio->io_size, &info);
4416 }
4417 }
4418
4419 return (zio);
4420 }
4421
4422 /*
4423 * Called by RAID-Z to ensure we don't compute the checksum twice.
4424 */
4425 void
4426 zio_checksum_verified(zio_t *zio)
4427 {
4428 zio->io_pipeline &= ~ZIO_STAGE_CHECKSUM_VERIFY;
4429 }
4430
4431 /*
4432 * ==========================================================================
4433 * Error rank. Error are ranked in the order 0, ENXIO, ECKSUM, EIO, other.
4434 * An error of 0 indicates success. ENXIO indicates whole-device failure,
4435 * which may be transient (e.g. unplugged) or permanent. ECKSUM and EIO
4436 * indicate errors that are specific to one I/O, and most likely permanent.
4437 * Any other error is presumed to be worse because we weren't expecting it.
4438 * ==========================================================================
4439 */
4440 int
4441 zio_worst_error(int e1, int e2)
4442 {
4443 static int zio_error_rank[] = { 0, ENXIO, ECKSUM, EIO };
4444 int r1, r2;
4445
4446 for (r1 = 0; r1 < sizeof (zio_error_rank) / sizeof (int); r1++)
4447 if (e1 == zio_error_rank[r1])
4448 break;
4449
4450 for (r2 = 0; r2 < sizeof (zio_error_rank) / sizeof (int); r2++)
4451 if (e2 == zio_error_rank[r2])
4452 break;
4453
4454 return (r1 > r2 ? e1 : e2);
4455 }
4456
4457 /*
4458 * ==========================================================================
4459 * I/O completion
4460 * ==========================================================================
4461 */
4462 static zio_t *
4463 zio_ready(zio_t *zio)
4464 {
4465 blkptr_t *bp = zio->io_bp;
4466 zio_t *pio, *pio_next;
4467 zio_link_t *zl = NULL;
4468
4469 if (zio_wait_for_children(zio, ZIO_CHILD_GANG_BIT | ZIO_CHILD_DDT_BIT,
4470 ZIO_WAIT_READY)) {
4471 return (NULL);
4472 }
4473
4474 if (zio->io_ready) {
4475 ASSERT(IO_IS_ALLOCATING(zio));
4476 ASSERT(bp->blk_birth == zio->io_txg || BP_IS_HOLE(bp) ||
4477 (zio->io_flags & ZIO_FLAG_NOPWRITE));
4478 ASSERT(zio->io_children[ZIO_CHILD_GANG][ZIO_WAIT_READY] == 0);
4479
4480 zio->io_ready(zio);
4481 }
4482
4483 #ifdef ZFS_DEBUG
4484 if (bp != NULL && bp != &zio->io_bp_copy)
4485 zio->io_bp_copy = *bp;
4486 #endif
4487
4488 if (zio->io_error != 0) {
4489 zio->io_pipeline = ZIO_INTERLOCK_PIPELINE;
4490
4491 if (zio->io_flags & ZIO_FLAG_IO_ALLOCATING) {
4492 ASSERT(IO_IS_ALLOCATING(zio));
4493 ASSERT(zio->io_priority == ZIO_PRIORITY_ASYNC_WRITE);
4494 ASSERT(zio->io_metaslab_class != NULL);
4495
4496 /*
4497 * We were unable to allocate anything, unreserve and
4498 * issue the next I/O to allocate.
4499 */
4500 metaslab_class_throttle_unreserve(
4501 zio->io_metaslab_class, zio->io_prop.zp_copies,
4502 zio->io_allocator, zio);
4503 zio_allocate_dispatch(zio->io_spa, zio->io_allocator);
4504 }
4505 }
4506
4507 mutex_enter(&zio->io_lock);
4508 zio->io_state[ZIO_WAIT_READY] = 1;
4509 pio = zio_walk_parents(zio, &zl);
4510 mutex_exit(&zio->io_lock);
4511
4512 /*
4513 * As we notify zio's parents, new parents could be added.
4514 * New parents go to the head of zio's io_parent_list, however,
4515 * so we will (correctly) not notify them. The remainder of zio's
4516 * io_parent_list, from 'pio_next' onward, cannot change because
4517 * all parents must wait for us to be done before they can be done.
4518 */
4519 for (; pio != NULL; pio = pio_next) {
4520 pio_next = zio_walk_parents(zio, &zl);
4521 zio_notify_parent(pio, zio, ZIO_WAIT_READY, NULL);
4522 }
4523
4524 if (zio->io_flags & ZIO_FLAG_NODATA) {
4525 if (bp != NULL && BP_IS_GANG(bp)) {
4526 zio->io_flags &= ~ZIO_FLAG_NODATA;
4527 } else {
4528 ASSERT((uintptr_t)zio->io_abd < SPA_MAXBLOCKSIZE);
4529 zio->io_pipeline &= ~ZIO_VDEV_IO_STAGES;
4530 }
4531 }
4532
4533 if (zio_injection_enabled &&
4534 zio->io_spa->spa_syncing_txg == zio->io_txg)
4535 zio_handle_ignored_writes(zio);
4536
4537 return (zio);
4538 }
4539
4540 /*
4541 * Update the allocation throttle accounting.
4542 */
4543 static void
4544 zio_dva_throttle_done(zio_t *zio)
4545 {
4546 zio_t *lio __maybe_unused = zio->io_logical;
4547 zio_t *pio = zio_unique_parent(zio);
4548 vdev_t *vd = zio->io_vd;
4549 int flags = METASLAB_ASYNC_ALLOC;
4550
4551 ASSERT3P(zio->io_bp, !=, NULL);
4552 ASSERT3U(zio->io_type, ==, ZIO_TYPE_WRITE);
4553 ASSERT3U(zio->io_priority, ==, ZIO_PRIORITY_ASYNC_WRITE);
4554 ASSERT3U(zio->io_child_type, ==, ZIO_CHILD_VDEV);
4555 ASSERT(vd != NULL);
4556 ASSERT3P(vd, ==, vd->vdev_top);
4557 ASSERT(zio_injection_enabled || !(zio->io_flags & ZIO_FLAG_IO_RETRY));
4558 ASSERT(!(zio->io_flags & ZIO_FLAG_IO_REPAIR));
4559 ASSERT(zio->io_flags & ZIO_FLAG_IO_ALLOCATING);
4560 ASSERT(!(lio->io_flags & ZIO_FLAG_IO_REWRITE));
4561 ASSERT(!(lio->io_orig_flags & ZIO_FLAG_NODATA));
4562
4563 /*
4564 * Parents of gang children can have two flavors -- ones that
4565 * allocated the gang header (will have ZIO_FLAG_IO_REWRITE set)
4566 * and ones that allocated the constituent blocks. The allocation
4567 * throttle needs to know the allocating parent zio so we must find
4568 * it here.
4569 */
4570 if (pio->io_child_type == ZIO_CHILD_GANG) {
4571 /*
4572 * If our parent is a rewrite gang child then our grandparent
4573 * would have been the one that performed the allocation.
4574 */
4575 if (pio->io_flags & ZIO_FLAG_IO_REWRITE)
4576 pio = zio_unique_parent(pio);
4577 flags |= METASLAB_GANG_CHILD;
4578 }
4579
4580 ASSERT(IO_IS_ALLOCATING(pio));
4581 ASSERT3P(zio, !=, zio->io_logical);
4582 ASSERT(zio->io_logical != NULL);
4583 ASSERT(!(zio->io_flags & ZIO_FLAG_IO_REPAIR));
4584 ASSERT0(zio->io_flags & ZIO_FLAG_NOPWRITE);
4585 ASSERT(zio->io_metaslab_class != NULL);
4586
4587 mutex_enter(&pio->io_lock);
4588 metaslab_group_alloc_decrement(zio->io_spa, vd->vdev_id, pio, flags,
4589 pio->io_allocator, B_TRUE);
4590 mutex_exit(&pio->io_lock);
4591
4592 metaslab_class_throttle_unreserve(zio->io_metaslab_class, 1,
4593 pio->io_allocator, pio);
4594
4595 /*
4596 * Call into the pipeline to see if there is more work that
4597 * needs to be done. If there is work to be done it will be
4598 * dispatched to another taskq thread.
4599 */
4600 zio_allocate_dispatch(zio->io_spa, pio->io_allocator);
4601 }
4602
4603 static zio_t *
4604 zio_done(zio_t *zio)
4605 {
4606 /*
4607 * Always attempt to keep stack usage minimal here since
4608 * we can be called recursively up to 19 levels deep.
4609 */
4610 const uint64_t psize = zio->io_size;
4611 zio_t *pio, *pio_next;
4612 zio_link_t *zl = NULL;
4613
4614 /*
4615 * If our children haven't all completed,
4616 * wait for them and then repeat this pipeline stage.
4617 */
4618 if (zio_wait_for_children(zio, ZIO_CHILD_ALL_BITS, ZIO_WAIT_DONE)) {
4619 return (NULL);
4620 }
4621
4622 /*
4623 * If the allocation throttle is enabled, then update the accounting.
4624 * We only track child I/Os that are part of an allocating async
4625 * write. We must do this since the allocation is performed
4626 * by the logical I/O but the actual write is done by child I/Os.
4627 */
4628 if (zio->io_flags & ZIO_FLAG_IO_ALLOCATING &&
4629 zio->io_child_type == ZIO_CHILD_VDEV) {
4630 ASSERT(zio->io_metaslab_class != NULL);
4631 ASSERT(zio->io_metaslab_class->mc_alloc_throttle_enabled);
4632 zio_dva_throttle_done(zio);
4633 }
4634
4635 /*
4636 * If the allocation throttle is enabled, verify that
4637 * we have decremented the refcounts for every I/O that was throttled.
4638 */
4639 if (zio->io_flags & ZIO_FLAG_IO_ALLOCATING) {
4640 ASSERT(zio->io_type == ZIO_TYPE_WRITE);
4641 ASSERT(zio->io_priority == ZIO_PRIORITY_ASYNC_WRITE);
4642 ASSERT(zio->io_bp != NULL);
4643
4644 metaslab_group_alloc_verify(zio->io_spa, zio->io_bp, zio,
4645 zio->io_allocator);
4646 VERIFY(zfs_refcount_not_held(&zio->io_metaslab_class->
4647 mc_allocator[zio->io_allocator].mca_alloc_slots, zio));
4648 }
4649
4650
4651 for (int c = 0; c < ZIO_CHILD_TYPES; c++)
4652 for (int w = 0; w < ZIO_WAIT_TYPES; w++)
4653 ASSERT(zio->io_children[c][w] == 0);
4654
4655 if (zio->io_bp != NULL && !BP_IS_EMBEDDED(zio->io_bp)) {
4656 ASSERT(zio->io_bp->blk_pad[0] == 0);
4657 ASSERT(zio->io_bp->blk_pad[1] == 0);
4658 ASSERT(memcmp(zio->io_bp, &zio->io_bp_copy,
4659 sizeof (blkptr_t)) == 0 ||
4660 (zio->io_bp == zio_unique_parent(zio)->io_bp));
4661 if (zio->io_type == ZIO_TYPE_WRITE && !BP_IS_HOLE(zio->io_bp) &&
4662 zio->io_bp_override == NULL &&
4663 !(zio->io_flags & ZIO_FLAG_IO_REPAIR)) {
4664 ASSERT3U(zio->io_prop.zp_copies, <=,
4665 BP_GET_NDVAS(zio->io_bp));
4666 ASSERT(BP_COUNT_GANG(zio->io_bp) == 0 ||
4667 (BP_COUNT_GANG(zio->io_bp) ==
4668 BP_GET_NDVAS(zio->io_bp)));
4669 }
4670 if (zio->io_flags & ZIO_FLAG_NOPWRITE)
4671 VERIFY(BP_EQUAL(zio->io_bp, &zio->io_bp_orig));
4672 }
4673
4674 /*
4675 * If there were child vdev/gang/ddt errors, they apply to us now.
4676 */
4677 zio_inherit_child_errors(zio, ZIO_CHILD_VDEV);
4678 zio_inherit_child_errors(zio, ZIO_CHILD_GANG);
4679 zio_inherit_child_errors(zio, ZIO_CHILD_DDT);
4680
4681 /*
4682 * If the I/O on the transformed data was successful, generate any
4683 * checksum reports now while we still have the transformed data.
4684 */
4685 if (zio->io_error == 0) {
4686 while (zio->io_cksum_report != NULL) {
4687 zio_cksum_report_t *zcr = zio->io_cksum_report;
4688 uint64_t align = zcr->zcr_align;
4689 uint64_t asize = P2ROUNDUP(psize, align);
4690 abd_t *adata = zio->io_abd;
4691
4692 if (adata != NULL && asize != psize) {
4693 adata = abd_alloc(asize, B_TRUE);
4694 abd_copy(adata, zio->io_abd, psize);
4695 abd_zero_off(adata, psize, asize - psize);
4696 }
4697
4698 zio->io_cksum_report = zcr->zcr_next;
4699 zcr->zcr_next = NULL;
4700 zcr->zcr_finish(zcr, adata);
4701 zfs_ereport_free_checksum(zcr);
4702
4703 if (adata != NULL && asize != psize)
4704 abd_free(adata);
4705 }
4706 }
4707
4708 zio_pop_transforms(zio); /* note: may set zio->io_error */
4709
4710 vdev_stat_update(zio, psize);
4711
4712 /*
4713 * If this I/O is attached to a particular vdev is slow, exceeding
4714 * 30 seconds to complete, post an error described the I/O delay.
4715 * We ignore these errors if the device is currently unavailable.
4716 */
4717 if (zio->io_delay >= MSEC2NSEC(zio_slow_io_ms)) {
4718 if (zio->io_vd != NULL && !vdev_is_dead(zio->io_vd)) {
4719 /*
4720 * We want to only increment our slow IO counters if
4721 * the IO is valid (i.e. not if the drive is removed).
4722 *
4723 * zfs_ereport_post() will also do these checks, but
4724 * it can also ratelimit and have other failures, so we
4725 * need to increment the slow_io counters independent
4726 * of it.
4727 */
4728 if (zfs_ereport_is_valid(FM_EREPORT_ZFS_DELAY,
4729 zio->io_spa, zio->io_vd, zio)) {
4730 mutex_enter(&zio->io_vd->vdev_stat_lock);
4731 zio->io_vd->vdev_stat.vs_slow_ios++;
4732 mutex_exit(&zio->io_vd->vdev_stat_lock);
4733
4734 (void) zfs_ereport_post(FM_EREPORT_ZFS_DELAY,
4735 zio->io_spa, zio->io_vd, &zio->io_bookmark,
4736 zio, 0);
4737 }
4738 }
4739 }
4740
4741 if (zio->io_error) {
4742 /*
4743 * If this I/O is attached to a particular vdev,
4744 * generate an error message describing the I/O failure
4745 * at the block level. We ignore these errors if the
4746 * device is currently unavailable.
4747 */
4748 if (zio->io_error != ECKSUM && zio->io_vd != NULL &&
4749 !vdev_is_dead(zio->io_vd)) {
4750 int ret = zfs_ereport_post(FM_EREPORT_ZFS_IO,
4751 zio->io_spa, zio->io_vd, &zio->io_bookmark, zio, 0);
4752 if (ret != EALREADY) {
4753 mutex_enter(&zio->io_vd->vdev_stat_lock);
4754 if (zio->io_type == ZIO_TYPE_READ)
4755 zio->io_vd->vdev_stat.vs_read_errors++;
4756 else if (zio->io_type == ZIO_TYPE_WRITE)
4757 zio->io_vd->vdev_stat.vs_write_errors++;
4758 mutex_exit(&zio->io_vd->vdev_stat_lock);
4759 }
4760 }
4761
4762 if ((zio->io_error == EIO || !(zio->io_flags &
4763 (ZIO_FLAG_SPECULATIVE | ZIO_FLAG_DONT_PROPAGATE))) &&
4764 zio == zio->io_logical) {
4765 /*
4766 * For logical I/O requests, tell the SPA to log the
4767 * error and generate a logical data ereport.
4768 */
4769 spa_log_error(zio->io_spa, &zio->io_bookmark,
4770 &zio->io_bp->blk_birth);
4771 (void) zfs_ereport_post(FM_EREPORT_ZFS_DATA,
4772 zio->io_spa, NULL, &zio->io_bookmark, zio, 0);
4773 }
4774 }
4775
4776 if (zio->io_error && zio == zio->io_logical) {
4777 /*
4778 * Determine whether zio should be reexecuted. This will
4779 * propagate all the way to the root via zio_notify_parent().
4780 */
4781 ASSERT(zio->io_vd == NULL && zio->io_bp != NULL);
4782 ASSERT(zio->io_child_type == ZIO_CHILD_LOGICAL);
4783
4784 if (IO_IS_ALLOCATING(zio) &&
4785 !(zio->io_flags & ZIO_FLAG_CANFAIL)) {
4786 if (zio->io_error != ENOSPC)
4787 zio->io_reexecute |= ZIO_REEXECUTE_NOW;
4788 else
4789 zio->io_reexecute |= ZIO_REEXECUTE_SUSPEND;
4790 }
4791
4792 if ((zio->io_type == ZIO_TYPE_READ ||
4793 zio->io_type == ZIO_TYPE_FREE) &&
4794 !(zio->io_flags & ZIO_FLAG_SCAN_THREAD) &&
4795 zio->io_error == ENXIO &&
4796 spa_load_state(zio->io_spa) == SPA_LOAD_NONE &&
4797 spa_get_failmode(zio->io_spa) != ZIO_FAILURE_MODE_CONTINUE)
4798 zio->io_reexecute |= ZIO_REEXECUTE_SUSPEND;
4799
4800 if (!(zio->io_flags & ZIO_FLAG_CANFAIL) && !zio->io_reexecute)
4801 zio->io_reexecute |= ZIO_REEXECUTE_SUSPEND;
4802
4803 /*
4804 * Here is a possibly good place to attempt to do
4805 * either combinatorial reconstruction or error correction
4806 * based on checksums. It also might be a good place
4807 * to send out preliminary ereports before we suspend
4808 * processing.
4809 */
4810 }
4811
4812 /*
4813 * If there were logical child errors, they apply to us now.
4814 * We defer this until now to avoid conflating logical child
4815 * errors with errors that happened to the zio itself when
4816 * updating vdev stats and reporting FMA events above.
4817 */
4818 zio_inherit_child_errors(zio, ZIO_CHILD_LOGICAL);
4819
4820 if ((zio->io_error || zio->io_reexecute) &&
4821 IO_IS_ALLOCATING(zio) && zio->io_gang_leader == zio &&
4822 !(zio->io_flags & (ZIO_FLAG_IO_REWRITE | ZIO_FLAG_NOPWRITE)))
4823 zio_dva_unallocate(zio, zio->io_gang_tree, zio->io_bp);
4824
4825 zio_gang_tree_free(&zio->io_gang_tree);
4826
4827 /*
4828 * Godfather I/Os should never suspend.
4829 */
4830 if ((zio->io_flags & ZIO_FLAG_GODFATHER) &&
4831 (zio->io_reexecute & ZIO_REEXECUTE_SUSPEND))
4832 zio->io_reexecute &= ~ZIO_REEXECUTE_SUSPEND;
4833
4834 if (zio->io_reexecute) {
4835 /*
4836 * This is a logical I/O that wants to reexecute.
4837 *
4838 * Reexecute is top-down. When an i/o fails, if it's not
4839 * the root, it simply notifies its parent and sticks around.
4840 * The parent, seeing that it still has children in zio_done(),
4841 * does the same. This percolates all the way up to the root.
4842 * The root i/o will reexecute or suspend the entire tree.
4843 *
4844 * This approach ensures that zio_reexecute() honors
4845 * all the original i/o dependency relationships, e.g.
4846 * parents not executing until children are ready.
4847 */
4848 ASSERT(zio->io_child_type == ZIO_CHILD_LOGICAL);
4849
4850 zio->io_gang_leader = NULL;
4851
4852 mutex_enter(&zio->io_lock);
4853 zio->io_state[ZIO_WAIT_DONE] = 1;
4854 mutex_exit(&zio->io_lock);
4855
4856 /*
4857 * "The Godfather" I/O monitors its children but is
4858 * not a true parent to them. It will track them through
4859 * the pipeline but severs its ties whenever they get into
4860 * trouble (e.g. suspended). This allows "The Godfather"
4861 * I/O to return status without blocking.
4862 */
4863 zl = NULL;
4864 for (pio = zio_walk_parents(zio, &zl); pio != NULL;
4865 pio = pio_next) {
4866 zio_link_t *remove_zl = zl;
4867 pio_next = zio_walk_parents(zio, &zl);
4868
4869 if ((pio->io_flags & ZIO_FLAG_GODFATHER) &&
4870 (zio->io_reexecute & ZIO_REEXECUTE_SUSPEND)) {
4871 zio_remove_child(pio, zio, remove_zl);
4872 /*
4873 * This is a rare code path, so we don't
4874 * bother with "next_to_execute".
4875 */
4876 zio_notify_parent(pio, zio, ZIO_WAIT_DONE,
4877 NULL);
4878 }
4879 }
4880
4881 if ((pio = zio_unique_parent(zio)) != NULL) {
4882 /*
4883 * We're not a root i/o, so there's nothing to do
4884 * but notify our parent. Don't propagate errors
4885 * upward since we haven't permanently failed yet.
4886 */
4887 ASSERT(!(zio->io_flags & ZIO_FLAG_GODFATHER));
4888 zio->io_flags |= ZIO_FLAG_DONT_PROPAGATE;
4889 /*
4890 * This is a rare code path, so we don't bother with
4891 * "next_to_execute".
4892 */
4893 zio_notify_parent(pio, zio, ZIO_WAIT_DONE, NULL);
4894 } else if (zio->io_reexecute & ZIO_REEXECUTE_SUSPEND) {
4895 /*
4896 * We'd fail again if we reexecuted now, so suspend
4897 * until conditions improve (e.g. device comes online).
4898 */
4899 zio_suspend(zio->io_spa, zio, ZIO_SUSPEND_IOERR);
4900 } else {
4901 /*
4902 * Reexecution is potentially a huge amount of work.
4903 * Hand it off to the otherwise-unused claim taskq.
4904 */
4905 ASSERT(taskq_empty_ent(&zio->io_tqent));
4906 spa_taskq_dispatch_ent(zio->io_spa,
4907 ZIO_TYPE_CLAIM, ZIO_TASKQ_ISSUE,
4908 zio_reexecute, zio, 0, &zio->io_tqent);
4909 }
4910 return (NULL);
4911 }
4912
4913 ASSERT(list_is_empty(&zio->io_child_list));
4914 ASSERT(zio->io_reexecute == 0);
4915 ASSERT(zio->io_error == 0 || (zio->io_flags & ZIO_FLAG_CANFAIL));
4916
4917 /*
4918 * Report any checksum errors, since the I/O is complete.
4919 */
4920 while (zio->io_cksum_report != NULL) {
4921 zio_cksum_report_t *zcr = zio->io_cksum_report;
4922 zio->io_cksum_report = zcr->zcr_next;
4923 zcr->zcr_next = NULL;
4924 zcr->zcr_finish(zcr, NULL);
4925 zfs_ereport_free_checksum(zcr);
4926 }
4927
4928 /*
4929 * It is the responsibility of the done callback to ensure that this
4930 * particular zio is no longer discoverable for adoption, and as
4931 * such, cannot acquire any new parents.
4932 */
4933 if (zio->io_done)
4934 zio->io_done(zio);
4935
4936 mutex_enter(&zio->io_lock);
4937 zio->io_state[ZIO_WAIT_DONE] = 1;
4938 mutex_exit(&zio->io_lock);
4939
4940 /*
4941 * We are done executing this zio. We may want to execute a parent
4942 * next. See the comment in zio_notify_parent().
4943 */
4944 zio_t *next_to_execute = NULL;
4945 zl = NULL;
4946 for (pio = zio_walk_parents(zio, &zl); pio != NULL; pio = pio_next) {
4947 zio_link_t *remove_zl = zl;
4948 pio_next = zio_walk_parents(zio, &zl);
4949 zio_remove_child(pio, zio, remove_zl);
4950 zio_notify_parent(pio, zio, ZIO_WAIT_DONE, &next_to_execute);
4951 }
4952
4953 if (zio->io_waiter != NULL) {
4954 mutex_enter(&zio->io_lock);
4955 zio->io_executor = NULL;
4956 cv_broadcast(&zio->io_cv);
4957 mutex_exit(&zio->io_lock);
4958 } else {
4959 zio_destroy(zio);
4960 }
4961
4962 return (next_to_execute);
4963 }
4964
4965 /*
4966 * ==========================================================================
4967 * I/O pipeline definition
4968 * ==========================================================================
4969 */
4970 static zio_pipe_stage_t *zio_pipeline[] = {
4971 NULL,
4972 zio_read_bp_init,
4973 zio_write_bp_init,
4974 zio_free_bp_init,
4975 zio_issue_async,
4976 zio_write_compress,
4977 zio_encrypt,
4978 zio_checksum_generate,
4979 zio_nop_write,
4980 zio_brt_free,
4981 zio_ddt_read_start,
4982 zio_ddt_read_done,
4983 zio_ddt_write,
4984 zio_ddt_free,
4985 zio_gang_assemble,
4986 zio_gang_issue,
4987 zio_dva_throttle,
4988 zio_dva_allocate,
4989 zio_dva_free,
4990 zio_dva_claim,
4991 zio_ready,
4992 zio_vdev_io_start,
4993 zio_vdev_io_done,
4994 zio_vdev_io_assess,
4995 zio_checksum_verify,
4996 zio_done
4997 };
4998
4999
5000
5001
5002 /*
5003 * Compare two zbookmark_phys_t's to see which we would reach first in a
5004 * pre-order traversal of the object tree.
5005 *
5006 * This is simple in every case aside from the meta-dnode object. For all other
5007 * objects, we traverse them in order (object 1 before object 2, and so on).
5008 * However, all of these objects are traversed while traversing object 0, since
5009 * the data it points to is the list of objects. Thus, we need to convert to a
5010 * canonical representation so we can compare meta-dnode bookmarks to
5011 * non-meta-dnode bookmarks.
5012 *
5013 * We do this by calculating "equivalents" for each field of the zbookmark.
5014 * zbookmarks outside of the meta-dnode use their own object and level, and
5015 * calculate the level 0 equivalent (the first L0 blkid that is contained in the
5016 * blocks this bookmark refers to) by multiplying their blkid by their span
5017 * (the number of L0 blocks contained within one block at their level).
5018 * zbookmarks inside the meta-dnode calculate their object equivalent
5019 * (which is L0equiv * dnodes per data block), use 0 for their L0equiv, and use
5020 * level + 1<<31 (any value larger than a level could ever be) for their level.
5021 * This causes them to always compare before a bookmark in their object
5022 * equivalent, compare appropriately to bookmarks in other objects, and to
5023 * compare appropriately to other bookmarks in the meta-dnode.
5024 */
5025 int
5026 zbookmark_compare(uint16_t dbss1, uint8_t ibs1, uint16_t dbss2, uint8_t ibs2,
5027 const zbookmark_phys_t *zb1, const zbookmark_phys_t *zb2)
5028 {
5029 /*
5030 * These variables represent the "equivalent" values for the zbookmark,
5031 * after converting zbookmarks inside the meta dnode to their
5032 * normal-object equivalents.
5033 */
5034 uint64_t zb1obj, zb2obj;
5035 uint64_t zb1L0, zb2L0;
5036 uint64_t zb1level, zb2level;
5037
5038 if (zb1->zb_object == zb2->zb_object &&
5039 zb1->zb_level == zb2->zb_level &&
5040 zb1->zb_blkid == zb2->zb_blkid)
5041 return (0);
5042
5043 IMPLY(zb1->zb_level > 0, ibs1 >= SPA_MINBLOCKSHIFT);
5044 IMPLY(zb2->zb_level > 0, ibs2 >= SPA_MINBLOCKSHIFT);
5045
5046 /*
5047 * BP_SPANB calculates the span in blocks.
5048 */
5049 zb1L0 = (zb1->zb_blkid) * BP_SPANB(ibs1, zb1->zb_level);
5050 zb2L0 = (zb2->zb_blkid) * BP_SPANB(ibs2, zb2->zb_level);
5051
5052 if (zb1->zb_object == DMU_META_DNODE_OBJECT) {
5053 zb1obj = zb1L0 * (dbss1 << (SPA_MINBLOCKSHIFT - DNODE_SHIFT));
5054 zb1L0 = 0;
5055 zb1level = zb1->zb_level + COMPARE_META_LEVEL;
5056 } else {
5057 zb1obj = zb1->zb_object;
5058 zb1level = zb1->zb_level;
5059 }
5060
5061 if (zb2->zb_object == DMU_META_DNODE_OBJECT) {
5062 zb2obj = zb2L0 * (dbss2 << (SPA_MINBLOCKSHIFT - DNODE_SHIFT));
5063 zb2L0 = 0;
5064 zb2level = zb2->zb_level + COMPARE_META_LEVEL;
5065 } else {
5066 zb2obj = zb2->zb_object;
5067 zb2level = zb2->zb_level;
5068 }
5069
5070 /* Now that we have a canonical representation, do the comparison. */
5071 if (zb1obj != zb2obj)
5072 return (zb1obj < zb2obj ? -1 : 1);
5073 else if (zb1L0 != zb2L0)
5074 return (zb1L0 < zb2L0 ? -1 : 1);
5075 else if (zb1level != zb2level)
5076 return (zb1level > zb2level ? -1 : 1);
5077 /*
5078 * This can (theoretically) happen if the bookmarks have the same object
5079 * and level, but different blkids, if the block sizes are not the same.
5080 * There is presently no way to change the indirect block sizes
5081 */
5082 return (0);
5083 }
5084
5085 /*
5086 * This function checks the following: given that last_block is the place that
5087 * our traversal stopped last time, does that guarantee that we've visited
5088 * every node under subtree_root? Therefore, we can't just use the raw output
5089 * of zbookmark_compare. We have to pass in a modified version of
5090 * subtree_root; by incrementing the block id, and then checking whether
5091 * last_block is before or equal to that, we can tell whether or not having
5092 * visited last_block implies that all of subtree_root's children have been
5093 * visited.
5094 */
5095 boolean_t
5096 zbookmark_subtree_completed(const dnode_phys_t *dnp,
5097 const zbookmark_phys_t *subtree_root, const zbookmark_phys_t *last_block)
5098 {
5099 zbookmark_phys_t mod_zb = *subtree_root;
5100 mod_zb.zb_blkid++;
5101 ASSERT0(last_block->zb_level);
5102
5103 /* The objset_phys_t isn't before anything. */
5104 if (dnp == NULL)
5105 return (B_FALSE);
5106
5107 /*
5108 * We pass in 1ULL << (DNODE_BLOCK_SHIFT - SPA_MINBLOCKSHIFT) for the
5109 * data block size in sectors, because that variable is only used if
5110 * the bookmark refers to a block in the meta-dnode. Since we don't
5111 * know without examining it what object it refers to, and there's no
5112 * harm in passing in this value in other cases, we always pass it in.
5113 *
5114 * We pass in 0 for the indirect block size shift because zb2 must be
5115 * level 0. The indirect block size is only used to calculate the span
5116 * of the bookmark, but since the bookmark must be level 0, the span is
5117 * always 1, so the math works out.
5118 *
5119 * If you make changes to how the zbookmark_compare code works, be sure
5120 * to make sure that this code still works afterwards.
5121 */
5122 return (zbookmark_compare(dnp->dn_datablkszsec, dnp->dn_indblkshift,
5123 1ULL << (DNODE_BLOCK_SHIFT - SPA_MINBLOCKSHIFT), 0, &mod_zb,
5124 last_block) <= 0);
5125 }
5126
5127 /*
5128 * This function is similar to zbookmark_subtree_completed(), but returns true
5129 * if subtree_root is equal or ahead of last_block, i.e. still to be done.
5130 */
5131 boolean_t
5132 zbookmark_subtree_tbd(const dnode_phys_t *dnp,
5133 const zbookmark_phys_t *subtree_root, const zbookmark_phys_t *last_block)
5134 {
5135 ASSERT0(last_block->zb_level);
5136 if (dnp == NULL)
5137 return (B_FALSE);
5138 return (zbookmark_compare(dnp->dn_datablkszsec, dnp->dn_indblkshift,
5139 1ULL << (DNODE_BLOCK_SHIFT - SPA_MINBLOCKSHIFT), 0, subtree_root,
5140 last_block) >= 0);
5141 }
5142
5143 EXPORT_SYMBOL(zio_type_name);
5144 EXPORT_SYMBOL(zio_buf_alloc);
5145 EXPORT_SYMBOL(zio_data_buf_alloc);
5146 EXPORT_SYMBOL(zio_buf_free);
5147 EXPORT_SYMBOL(zio_data_buf_free);
5148
5149 ZFS_MODULE_PARAM(zfs_zio, zio_, slow_io_ms, INT, ZMOD_RW,
5150 "Max I/O completion time (milliseconds) before marking it as slow");
5151
5152 ZFS_MODULE_PARAM(zfs_zio, zio_, requeue_io_start_cut_in_line, INT, ZMOD_RW,
5153 "Prioritize requeued I/O");
5154
5155 ZFS_MODULE_PARAM(zfs, zfs_, sync_pass_deferred_free, UINT, ZMOD_RW,
5156 "Defer frees starting in this pass");
5157
5158 ZFS_MODULE_PARAM(zfs, zfs_, sync_pass_dont_compress, UINT, ZMOD_RW,
5159 "Don't compress starting in this pass");
5160
5161 ZFS_MODULE_PARAM(zfs, zfs_, sync_pass_rewrite, UINT, ZMOD_RW,
5162 "Rewrite new bps starting in this pass");
5163
5164 ZFS_MODULE_PARAM(zfs_zio, zio_, dva_throttle_enabled, INT, ZMOD_RW,
5165 "Throttle block allocations in the ZIO pipeline");
5166
5167 ZFS_MODULE_PARAM(zfs_zio, zio_, deadman_log_all, INT, ZMOD_RW,
5168 "Log all slow ZIOs, not just those with vdevs");