diff options
author | Tom Caputi <[email protected]> | 2018-11-07 18:44:56 -0500 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2018-11-07 15:44:56 -0800 |
commit | 20eb30d08e24c2240a5d66e2e62893e784f586af (patch) | |
tree | 1410f1d4aa7c8791f4f1992078a8bc3de4427db7 /module | |
parent | fde25c0a87ea7e2d4438485cd55646a91b99c4b4 (diff) |
Fix divide by zero during indirect split damage
This patch simply ensures that vdev_indirect_splits_damage()
cannot hit a divide by zero exception if a split has no
children with valid data. The normal reconstruction code
path in vdev_indirect_reconstruct_io_done() already has this
check.
Reviewed-by: Matthew Ahrens <[email protected]>
Reviewed-by: Brian Behlendorf <[email protected]>
Signed-off-by: Tom Caputi <[email protected]>
Closes #8086
Diffstat (limited to 'module')
-rw-r--r-- | module/zfs/vdev_indirect.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/module/zfs/vdev_indirect.c b/module/zfs/vdev_indirect.c index 7863fe9d0..1bc5676e3 100644 --- a/module/zfs/vdev_indirect.c +++ b/module/zfs/vdev_indirect.c @@ -1587,6 +1587,8 @@ vdev_indirect_splits_enumerate_randomly(indirect_vsd_t *iv, zio_t *zio) static int vdev_indirect_splits_damage(indirect_vsd_t *iv, zio_t *zio) { + int error; + /* Presume all the copies are unique for initial selection. */ for (indirect_split_t *is = list_head(&iv->iv_splits); is != NULL; is = list_next(&iv->iv_splits, is)) { @@ -1599,13 +1601,18 @@ vdev_indirect_splits_damage(indirect_vsd_t *iv, zio_t *zio) list_insert_tail(&is->is_unique_child, ic); } } + + if (list_is_empty(&is->is_unique_child)) { + error = SET_ERROR(EIO); + goto out; + } } /* * Set each is_good_child to a randomly-selected child which * is known to contain validated data. */ - int error = vdev_indirect_splits_enumerate_randomly(iv, zio); + error = vdev_indirect_splits_enumerate_randomly(iv, zio); if (error) goto out; |