forked from openzfs/zfs
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Umer Saleem <[email protected]>
- Loading branch information
1 parent
450f2d0
commit 9af6449
Showing
4 changed files
with
84 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
79 changes: 79 additions & 0 deletions
79
tests/zfs-tests/tests/functional/block_cloning/block_cloning_lwb_buffer_overflow.ksh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
#!/bin/ksh -p | ||
# | ||
# CDDL HEADER START | ||
# | ||
# The contents of this file are subject to the terms of the | ||
# Common Development and Distribution License (the "License"). | ||
# You may not use this file except in compliance with the License. | ||
# | ||
# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE | ||
# or https://opensource.org/licenses/CDDL-1.0. | ||
# See the License for the specific language governing permissions | ||
# and limitations under the License. | ||
# | ||
# When distributing Covered Code, include this CDDL HEADER in each | ||
# file and include the License file at usr/src/OPENSOLARIS.LICENSE. | ||
# If applicable, add the following below this CDDL HEADER, with the | ||
# fields enclosed by brackets "[]" replaced with your own identifying | ||
# information: Portions Copyright [yyyy] [name of copyright owner] | ||
# | ||
# CDDL HEADER END | ||
# | ||
|
||
# | ||
# Copyright (c) 2023 by iXsystems, Inc. All rights reserved. | ||
# | ||
|
||
. $STF_SUITE/include/libtest.shlib | ||
. $STF_SUITE/tests/functional/block_cloning/block_cloning.kshlib | ||
|
||
# | ||
# DESCRIPTION: | ||
# Test for LWB buffer overflow with multiple VDEVs ZIL when 128KB | ||
# block write is split into two 68KB ones, trying to write maximum | ||
# sizes 128KB TX_CLONE_RANGE record with 1022 block pointers into | ||
# 68KB buffer. | ||
# | ||
# STRATEGY: | ||
# 1. Create a pool with multiple VDEVs ZIL | ||
# 2. Write maximum sizes TX_CLONE_RANGE record with 1022 block | ||
# pointers into 68KB buffer | ||
# 3. Sync TXG | ||
# 4. Clone the file | ||
# 5. Synchronize cached writes | ||
# | ||
|
||
verify_runnable "global" | ||
|
||
if [[ $(linux_version) -lt $(linux_version "4.5") ]]; then | ||
log_unsupported "copy_file_range not available before Linux 4.5" | ||
fi | ||
|
||
VDIR=$TEST_BASE_DIR/disk-bclone | ||
VDEV="$VDIR/a $VDIR/b $VDIR/c" | ||
LDEV="$VDIR/e $VDIR/f" | ||
|
||
|
||
function cleanup | ||
{ | ||
datasetexists $TESTPOOL && destroy_pool $TESTPOOL | ||
rm -rf $VDIR | ||
} | ||
|
||
log_assert "Test for LWB buffer overflow with multiple VDEVs ZIL" | ||
|
||
log_must rm -rf $VDIR | ||
log_must mkdir -p $VDIR | ||
log_must truncate -s $MINVDEVSIZE $VDEV $LDEV | ||
|
||
log_must zpool create -o feature@block_cloning=enabled $TESTPOOL $VDEV \ | ||
log mirror $LDEV | ||
log_must zfs create -o recordsize=32K $TESTPOOL/$TESTFS | ||
log_must dd if=/dev/urandom of=/testpool/testfs/file1 bs=32K count=1022 \ | ||
conv=fsync | ||
sync_pool $TESTPOOL | ||
log_must clonefile -c /testpool/testfs/file1 /testpool/testfs/file2 | ||
log_must sync | ||
|
||
log_pass "LWB buffer overflow is not triggered with multiple VDEVs ZIL" | ||
|